diff --git a/cmd/adapter/adapter.go b/cmd/adapter/adapter.go index a1644755..37250e31 100644 --- a/cmd/adapter/adapter.go +++ b/cmd/adapter/adapter.go @@ -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, }, }, }