We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7026b8 commit fd71c60Copy full SHA for fd71c60
sdk/httputil/http.go
@@ -11,7 +11,7 @@ const (
11
// defaults to match DefaultTransport - defined to satisfy lint
12
maxIdleConns = 100
13
idleConnTimeout = 90 * time.Second
14
- tLSHandshakeTimeout = 10 * time.Second
+ tlsHandshakeTimeout = 10 * time.Second
15
expectContinueTimeout = 1 * time.Second
16
)
17
@@ -44,7 +44,7 @@ func SafeHTTPClientWithTLSConfig(cfg *tls.Config) *http.Client {
44
ForceAttemptHTTP2: true,
45
MaxIdleConns: maxIdleConns,
46
IdleConnTimeout: idleConnTimeout,
47
- TLSHandshakeTimeout: tLSHandshakeTimeout,
+ TLSHandshakeTimeout: tlsHandshakeTimeout,
48
ExpectContinueTimeout: expectContinueTimeout,
49
})
50
}
0 commit comments