From db2cd2c45863864ae4d7828c5dd2bb12e0183a58 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Sun, 27 Mar 2016 11:54:34 -0700 Subject: [PATCH] logclient: work around HTTP/2 issue See https://github.com/google/certificate-transparency/issues/1136 --- 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 d553950..dc36450 100644 --- a/ct/client/logclient.go +++ b/ct/client/logclient.go @@ -84,7 +84,7 @@ func (c *LogClient) fetchAndParse(uri string, res interface{}) error { if err != nil { return err } - req.Header.Set("Keep-Alive", "timeout=15, max=100") +// req.Header.Set("Keep-Alive", "timeout=15, max=100") resp, err := c.httpClient.Do(req) var body []byte if resp != nil {