Skip to content

Commit

Permalink
fix: remove overall connection limit
Browse files Browse the repository at this point in the history
  • Loading branch information
ddlees committed Oct 5, 2023
1 parent 8d97dcf commit 7a5c30c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion client/rest/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ func NewHTTPClient(proxyUrl string) (*http.Client, error) {
transport := http.DefaultTransport.(*http.Transport).Clone()
transport.MaxConnsPerHost = 200
transport.MaxIdleConnsPerHost = 200
transport.MaxIdleConns = 200
transport.DisableKeepAlives = false

// defaults to TLS 1.0 which is not favorable
Expand Down

0 comments on commit 7a5c30c

Please sign in to comment.