From 5d3706468dbde7fe9a40904b309fc05e686c8444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=BB=8Cla=CC=81mile=CC=81kan?= Date: Tue, 13 Jan 2026 11:58:05 +0100 Subject: [PATCH] Fix health check ping --- cmd/healthcheck/healthcheck.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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...