We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42344a4 commit 91e0655Copy full SHA for 91e0655
src/comm/comm.go
@@ -18,7 +18,7 @@ type Comm struct {
18
func New(c net.Conn) Comm {
19
c.SetReadDeadline(time.Now().Add(3 * time.Hour))
20
c.SetDeadline(time.Now().Add(3 * time.Hour))
21
- c.SetWriteDeadline(time.Now().Add(5 * time.Second))
+ c.SetWriteDeadline(time.Now().Add(3 * time.Hour))
22
return Comm{c}
23
}
24
0 commit comments