From 2a80e85783d1f332dade2b87c5272c5c134b62fb Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Tue, 30 Aug 2016 10:39:58 -0700 Subject: [PATCH] Increase log client request timeout to 60 seconds This should be configurable, but I need to experiment first. --- ct/client/logclient.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/client/logclient.go b/ct/client/logclient.go index 369e210..6a9e3d6 100644 --- a/ct/client/logclient.go +++ b/ct/client/logclient.go @@ -67,7 +67,7 @@ func New(uri string) *LogClient { c.uri = uri transport := &httpclient.Transport{ ConnectTimeout: 10 * time.Second, - RequestTimeout: 30 * time.Second, + RequestTimeout: 60 * time.Second, ResponseHeaderTimeout: 30 * time.Second, MaxIdleConnsPerHost: 10, DisableKeepAlives: false,