summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Benas <petr.benas@gooddata.com>2015-06-19 10:42:11 +0200
committerPetr Benas <petr.benas@gooddata.com>2015-06-19 10:42:11 +0200
commit65e3d573b7154c8934d6c12636df38167264de01 (patch)
tree1eaa24031a1ecc67d2522830a54c641ffa17aa86
parent3ca4dd0b240f9aea7f6139d4164c26a028bb5d5b (diff)
downloadssllabs-scan-65e3d573b7154c8934d6c12636df38167264de01.zip
ssllabs-scan-65e3d573b7154c8934d6c12636df38167264de01.tar.gz
ssllabs-scan-65e3d573b7154c8934d6c12636df38167264de01.tar.bz2
enable keep-alives
https://github.com/ssllabs/ssllabs-scan/issues/155
-rw-r--r--ssllabs-scan.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssllabs-scan.go b/ssllabs-scan.go
index e6ea35e..dea9020 100644
--- a/ssllabs-scan.go
+++ b/ssllabs-scan.go
@@ -572,7 +572,7 @@ func (manager *Manager) startAssessment(h string) {
func (manager *Manager) run() {
transport := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: globalInsecure},
- DisableKeepAlives: true,
+ DisableKeepAlives: false,
Proxy: http.ProxyFromEnvironment,
}