Renamed to correct property in tls.Config

This commit is contained in:
Neb, Sebastian 2019-02-26 13:17:49 +01:00
parent cd5b22bb72
commit 30542b3a13

View file

@ -325,7 +325,7 @@ func makePrometheusInsecureClient() *http.Client {
return &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
SkipTLSVerification: true,
InsecureSkipVerify: true,
},
},
}