diff --git a/internal/reddit/client.go b/internal/reddit/client.go index 57376da..84ee0bf 100644 --- a/internal/reddit/client.go +++ b/internal/reddit/client.go @@ -88,17 +88,10 @@ func NewClient(id, secret string, statsd statsd.ClientInterface, redis *redis.Cl }, } - /* - t := http.DefaultTransport.(*http.Transport).Clone() - t.MaxIdleConns = connLimit / 4 / 100 - t.MaxConnsPerHost = connLimit / 100 - t.MaxIdleConnsPerHost = connLimit / 4 / 100 - t.IdleConnTimeout = 60 * time.Second - t.ResponseHeaderTimeout = 5 * time.Second - - client := &http.Client{Transport: t} - */ - client := &http.Client{} + t := http.DefaultTransport.(*http.Transport).Clone() + t.IdleConnTimeout = 60 * time.Second + t.ResponseHeaderTimeout = 5 * time.Second + client := &http.Client{Transport: t} pool := &fastjson.ParserPool{}