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 007d6f4bce
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
} }
} }