mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-07 22:25:03 +00:00
Fixed typo
This commit is contained in:
parent
918899e434
commit
cd5b22bb72
1 changed files with 2 additions and 2 deletions
|
|
@ -321,11 +321,11 @@ func makePrometheusCAClient(caFilename string) (*http.Client, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func makePrometheusInsecureClient() (*http.Client) {
|
func makePrometheusInsecureClient() *http.Client {
|
||||||
return &http.Client{
|
return &http.Client{
|
||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
TLSClientConfig: &tls.Config{
|
TLSClientConfig: &tls.Config{
|
||||||
SkipTLSVerification: true
|
SkipTLSVerification: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue