Builds the insecure SSL transport off the clean default transport.

This commit is contained in:
James Phillips 2015-12-17 12:15:18 -08:00
parent f333207591
commit 09478b68ed
1 changed files with 4 additions and 4 deletions

View File

@ -172,11 +172,11 @@ func DefaultConfig() *Config {
} }
if !doVerify { if !doVerify {
config.HttpClient.Transport = &http.Transport{ transport := cleanhttp.DefaultTransport()
TLSClientConfig: &tls.Config{ transport.TLSClientConfig = &tls.Config{
InsecureSkipVerify: true, InsecureSkipVerify: true,
},
} }
config.HttpClient.Transport = transport
} }
} }