Fixed typo

This commit is contained in:
Neb, Sebastian 2019-02-26 13:16:27 +01:00
parent 918899e434
commit cd5b22bb72

View file

@ -321,11 +321,11 @@ func makePrometheusCAClient(caFilename string) (*http.Client, error) {
}, nil
}
func makePrometheusInsecureClient() (*http.Client) {
func makePrometheusInsecureClient() *http.Client {
return &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
SkipTLSVerification: true
SkipTLSVerification: true,
},
},
}