diff --git a/cmd/healthcheck/healthcheck.go b/cmd/healthcheck/healthcheck.go index a3b720eb6..cc0e1c81d 100644 --- a/cmd/healthcheck/healthcheck.go +++ b/cmd/healthcheck/healthcheck.go @@ -61,7 +61,12 @@ func Do(staticConfiguration static.Configuration) (*http.Response, error) { return nil, fmt.Errorf("ping: missing %s entry point", ep) } - client := &http.Client{Timeout: 5 * time.Second} + client := &http.Client{ + Timeout: 5 * time.Second, + Transport: &http.Transport{ + Proxy: nil, + }, + } protocol := "http" // TODO Handle TLS on ping etc...