From a75ece391ff8a54e108d2b52e13fdbf57e364483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 22 Sep 2025 15:41:17 +0200 Subject: [PATCH] use correct endpoint in nats check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- services/proxy/pkg/server/debug/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/proxy/pkg/server/debug/server.go b/services/proxy/pkg/server/debug/server.go index b5d172ed2..2a76c506d 100644 --- a/services/proxy/pkg/server/debug/server.go +++ b/services/proxy/pkg/server/debug/server.go @@ -22,7 +22,7 @@ func Server(opts ...Option) (*http.Server, error) { WithCheck("web reachability", checks.NewHTTPCheck(options.Config.HTTP.Addr)) readyHandlerConfiguration := healthHandlerConfiguration. - WithCheck("nats reachability", checks.NewNatsCheck(options.Config.Events.Cluster)) + WithCheck("nats reachability", checks.NewNatsCheck(options.Config.Events.Endpoint)) var configDumpFunc http.HandlerFunc = configDump(options.Config) return debug.NewService(