mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
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:
parent
a2b3cc4a38
commit
2047ebe377
1 changed files with 1 additions and 9 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue