Skip to content

Commit

Permalink
Bump default handshake timetout to 45 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarranza authored and garyburd committed Mar 6, 2018
1 parent 196b8d0 commit 8c40c0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func NewClient(netConn net.Conn, u *url.URL, requestHeader http.Header, readBufS
NetDial: func(net, addr string) (net.Conn, error) {
return netConn, nil
},
HandshakeTimeout: 5 * time.Second,
HandshakeTimeout: 45 * time.Second,
}
return d.Dial(u.String(), requestHeader)
}
Expand Down Expand Up @@ -108,7 +108,7 @@ func hostPortNoPort(u *url.URL) (hostPort, hostNoPort string) {
// DefaultDialer is a dialer with all fields set to the default values.
var DefaultDialer = &Dialer{
Proxy: http.ProxyFromEnvironment,
HandshakeTimeout: 5 * time.Second,
HandshakeTimeout: 45 * time.Second,
}

// Dial creates a new client connection. Use requestHeader to specify the
Expand All @@ -125,7 +125,7 @@ func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Re
if d == nil {
d = &Dialer{
Proxy: http.ProxyFromEnvironment,
HandshakeTimeout: 5 * time.Second,
HandshakeTimeout: 45 * time.Second,
}
}

Expand Down

0 comments on commit 8c40c0b

Please sign in to comment.