mirror of
https://github.com/minio/minio.git
synced 2025-04-05 04:10:28 -04:00
Fix transports/timeouts related regressions (#16427)
This commit is contained in:
parent
b4ef5ff294
commit
698862ec5d
@ -608,7 +608,7 @@ func NewCustomHTTPProxyTransport() func() *http.Transport {
|
|||||||
func NewHTTPTransportWithClientCerts(clientCert, clientKey string) *http.Transport {
|
func NewHTTPTransportWithClientCerts(clientCert, clientKey string) *http.Transport {
|
||||||
s := xhttp.ConnSettings{
|
s := xhttp.ConnSettings{
|
||||||
DNSCache: globalDNSCache,
|
DNSCache: globalDNSCache,
|
||||||
DialTimeout: 1 * time.Minute,
|
DialTimeout: defaultDialTimeout,
|
||||||
RootCAs: globalRootCAs,
|
RootCAs: globalRootCAs,
|
||||||
EnableHTTP2: false,
|
EnableHTTP2: false,
|
||||||
}
|
}
|
||||||
@ -676,7 +676,7 @@ func NewRemoteTargetHTTPTransport() func() *http.Transport {
|
|||||||
DialContext: newCustomDialContext(),
|
DialContext: newCustomDialContext(),
|
||||||
RootCAs: globalRootCAs,
|
RootCAs: globalRootCAs,
|
||||||
EnableHTTP2: false,
|
EnableHTTP2: false,
|
||||||
}.NewCustomHTTPProxyTransport()
|
}.NewRemoteTargetHTTPTransport()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load the json (typically from disk file).
|
// Load the json (typically from disk file).
|
||||||
|
@ -113,8 +113,8 @@ func (s ConnSettings) NewInternodeHTTPTransport() func() http.RoundTripper {
|
|||||||
tr := s.getDefaultTransport()
|
tr := s.getDefaultTransport()
|
||||||
|
|
||||||
// Settings specific to internode requests.
|
// Settings specific to internode requests.
|
||||||
tr.TLSHandshakeTimeout = 15 * time.Minute
|
tr.TLSHandshakeTimeout = 15 * time.Second
|
||||||
tr.ExpectContinueTimeout = 15 * time.Minute
|
tr.ExpectContinueTimeout = 15 * time.Second
|
||||||
|
|
||||||
return func() http.RoundTripper {
|
return func() http.RoundTripper {
|
||||||
return tr
|
return tr
|
||||||
|
Loading…
x
Reference in New Issue
Block a user