Merge pull request #1526 from hashicorp/f-transport

Builds the insecure SSL transport off the clean default transport.
This commit is contained in:
James Phillips 2015-12-17 12:19:25 -08:00
commit c76c868113
1 changed files with 4 additions and 4 deletions

View File

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