pkg/http: up the timeout to 10 seconds

Additionally, fix the units on that multiplication. This isn't
acceleration.
This commit is contained in:
Alex Crawford 2015-08-11 10:42:41 -07:00
parent ec8742c9ba
commit 00c9174da4

View File

@ -80,7 +80,7 @@ func NewHttpClient() *HttpClient {
MaxRetries: 15,
SkipTLS: false,
client: &http.Client{
Timeout: time.Duration(2) * time.Second,
Timeout: 10 * time.Second,
},
}