commit efbc99dc821415190b85e1808bfa48943c295505 from: French Ben date: Wed May 18 20:04:57 2016 UTC Modified defaultRWTimeout to 30 Signed-off-by: French Ben commit - 96aeada170096f3ba673f52f8b05c1bac8a8424d commit + efbc99dc821415190b85e1808bfa48943c295505 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.