From 9095649afb0589256c648920e57a9af7bf1b0190 Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Mon, 4 Jan 2021 23:38:47 -0500 Subject: [PATCH] Minor update --- client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.go b/client/client.go index b24d5406..3bf76583 100644 --- a/client/client.go +++ b/client/client.go @@ -19,7 +19,7 @@ func GetHTTPClient(insecure bool) *http.Client { if insecure { if insecureHTTPClient == nil { insecureHTTPClient = &http.Client{ - Timeout: time.Second * 10, + Timeout: 10 * time.Second, Transport: &http.Transport{ MaxIdleConns: 100, MaxIdleConnsPerHost: 20,