revert client Timeout addition

suspect that this is somehow causing "cannot assign requested address" bugs for
some users. removing since it wasn't a necessary part of the deadlock fix, but
just seemed like a prudent thing to have.
This commit is contained in:
Matt Jaffee 2018-12-14 11:31:23 -06:00
parent a2b3cc4a38
commit 2047ebe377
No known key found for this signature in database
GPG key ID: 08A3DFFF987B11BF

View file

@ -1504,15 +1504,7 @@ func GetHTTPClient(t *tls.Config) *http.Client {
if t != nil {
transport.TLSClientConfig = t
}
return &http.Client{
Transport: transport,
// Internal queries will time out after 2h 7m by default. This is
// reduced from the old default of no timeout, so it was thought we
// should keep it fairly high, but it could probably be reduced in most
// cases. It is set to an odd number in the hopes that it will be
// recognizable in stats/traces/logs when this limit is being hit.
Timeout: 127 * time.Minute,
}
return &http.Client{Transport: transport}
}
// handlPostRoaringImport