commit e797c539e9d64cf63c1d0f1733a1a9dbf56866e7 from: Stephen Day date: Wed May 18 22:03:49 2016 UTC Merge pull request #4 from FrenchBen/modify-defaultrw-timeout Modified defaultRWTimeout to 30 commit - 96aeada170096f3ba673f52f8b05c1bac8a8424d commit + e797c539e9d64cf63c1d0f1733a1a9dbf56866e7 blob - 0b067698e89dba3865f811c0b99ce4ed84462820 blob + cb6ebe7cd74d71083ec3ea88dcfb7f188e214b89 --- channel.go +++ channel.go @@ -42,7 +42,7 @@ func NewChannel(conn net.Conn, msize int) Channel { } const ( - defaultRWTimeout = 1 * time.Second // default read/write timeout if not set in context + defaultRWTimeout = 30 * time.Second // default read/write timeout if not set in context ) // channel provides bidirectional protocol framing for 9p over net.Conn.