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.
2 parents ac589d6 + 122ff3a commit a935aa1Copy full SHA for a935aa1
pkg/util/proxy/proxy.go
@@ -183,8 +183,9 @@ func constructLocation(cluster *clusterapis.Cluster) (*url.URL, error) {
183
func createProxyTransport(cluster *clusterapis.Cluster, tlsConfig *tls.Config) (*http.Transport, error) {
184
var proxyDialerFn utilnet.DialFunc
185
trans := utilnet.SetTransportDefaults(&http.Transport{
186
- DialContext: proxyDialerFn,
187
- TLSClientConfig: tlsConfig,
+ DialContext: proxyDialerFn,
+ TLSClientConfig: tlsConfig,
188
+ DisableKeepAlives: true,
189
})
190
191
if proxyURL := cluster.Spec.ProxyURL; proxyURL != "" {
0 commit comments