@@ -10,7 +10,6 @@ import (
10
10
"errors"
11
11
"fmt"
12
12
"io"
13
- "net"
14
13
"net/http"
15
14
"net/http/httptrace"
16
15
"net/http/httputil"
@@ -83,44 +82,50 @@ func NewClient(l logger.Logger, conf Config) *Client {
83
82
84
83
httpClient := conf .HTTPClient
85
84
86
- if conf .HTTPClient == nil {
87
- if conf .DisableHTTP2 {
88
- tr := & http.Transport {
89
- Proxy : http .ProxyFromEnvironment ,
90
- DisableCompression : false ,
91
- DisableKeepAlives : false ,
92
- DialContext : (& net.Dialer {
93
- Timeout : 30 * time .Second ,
94
- KeepAlive : 30 * time .Second ,
95
- }).DialContext ,
96
- MaxIdleConns : 100 ,
97
- IdleConnTimeout : 90 * time .Second ,
98
- TLSHandshakeTimeout : 30 * time .Second ,
99
- TLSNextProto : make (map [string ]func (authority string , c * tls.Conn ) http.RoundTripper ),
100
- }
101
- httpClient = & http.Client {
102
- Timeout : 60 * time .Second ,
103
- Transport : & authenticatedTransport {
104
- Token : conf .Token ,
105
- Delegate : tr ,
106
- },
107
- }
108
- } else {
109
- tr := & http2.Transport {
110
- ReadIdleTimeout : 30 * time .Second ,
111
- }
112
- if conf .TLSConfig != nil {
113
- tr .TLSClientConfig = conf .TLSConfig
114
- }
85
+ if httpClient != nil {
86
+ return & Client {
87
+ logger : l ,
88
+ client : httpClient ,
89
+ conf : conf ,
90
+ }
91
+ }
115
92
116
- httpClient = & http.Client {
117
- Timeout : 60 * time .Second ,
118
- Transport : & authenticatedTransport {
119
- Token : conf .Token ,
120
- Delegate : tr ,
121
- },
122
- }
93
+ var transport http.RoundTripper
94
+ if conf .DisableHTTP2 {
95
+ tr := http .DefaultTransport .(* http.Transport ).Clone ()
96
+ tr .TLSNextProto = make (map [string ]func (string , * tls.Conn ) http.RoundTripper )
97
+ // The default TLSClientConfig has h2 in NextProtos, so the
98
+ // negotiated TLS connection will assume h2 support.
99
+ // see https://github.com/golang/go/issues/50571
100
+ tr .TLSClientConfig .NextProtos = []string {"http/1.1" }
101
+
102
+ // Allow override of TLSConfig
103
+ if conf .TLSConfig != nil {
104
+ tr .TLSClientConfig = conf .TLSConfig
105
+ }
106
+
107
+ transport = tr
108
+ } else {
109
+ // There is still a bug in http2 around reusing dead connections.
110
+ // This is a workaround. See https://github.com/golang/go/issues/59690
111
+ tr := & http2.Transport {
112
+ ReadIdleTimeout : 30 * time .Second ,
113
+ }
114
+
115
+ // Allow override of TLSConfig
116
+ if conf .TLSConfig != nil {
117
+ tr .TLSClientConfig = conf .TLSConfig
123
118
}
119
+
120
+ transport = tr
121
+ }
122
+
123
+ httpClient = & http.Client {
124
+ Timeout : 60 * time .Second ,
125
+ Transport : & authenticatedTransport {
126
+ Token : conf .Token ,
127
+ Delegate : transport ,
128
+ },
124
129
}
125
130
126
131
return & Client {
0 commit comments