Builds the insecure SSL transport off the clean default transport.
This commit is contained in:
parent
f333207591
commit
09478b68ed
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue