Skip to content

Commit fd71c60

Browse files
committed
httputil: Fix casing mistake
1 parent c7026b8 commit fd71c60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/httputil/http.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const (
1111
// defaults to match DefaultTransport - defined to satisfy lint
1212
maxIdleConns = 100
1313
idleConnTimeout = 90 * time.Second
14-
tLSHandshakeTimeout = 10 * time.Second
14+
tlsHandshakeTimeout = 10 * time.Second
1515
expectContinueTimeout = 1 * time.Second
1616
)
1717

@@ -44,7 +44,7 @@ func SafeHTTPClientWithTLSConfig(cfg *tls.Config) *http.Client {
4444
ForceAttemptHTTP2: true,
4545
MaxIdleConns: maxIdleConns,
4646
IdleConnTimeout: idleConnTimeout,
47-
TLSHandshakeTimeout: tLSHandshakeTimeout,
47+
TLSHandshakeTimeout: tlsHandshakeTimeout,
4848
ExpectContinueTimeout: expectContinueTimeout,
4949
})
5050
}

0 commit comments

Comments
 (0)