mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 09:47:54 +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
|
||||
}
|
||||
|
||||
func makePrometheusInsecureClient() (*http.Client) {
|
||||
func makePrometheusInsecureClient() *http.Client {
|
||||
return &http.Client{
|
||||
Transport: &http.Transport{
|
||||
TLSClientConfig: &tls.Config{
|
||||
SkipTLSVerification: true
|
||||
SkipTLSVerification: true,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue