From c146e7edd25a3ac3beec4589c0ee9cce049f9f3f Mon Sep 17 00:00:00 2001 From: Sakurapainting Date: Thu, 2 Apr 2026 08:47:06 +0800 Subject: [PATCH] fix(gateway): adapt channel-only health.NewServer signature --- pkg/gateway/channel_only.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/gateway/channel_only.go b/pkg/gateway/channel_only.go index 53ca7cae4..983eeea27 100644 --- a/pkg/gateway/channel_only.go +++ b/pkg/gateway/channel_only.go @@ -168,7 +168,7 @@ func setupAndStartChannelServices( addr := net.JoinHostPort(listenHost, strconv.Itoa(cfg.Gateway.Port)) runningServices.ListenHost = listenHost runningServices.ListenPort = cfg.Gateway.Port - runningServices.HealthServer = health.NewServer(listenHost, cfg.Gateway.Port) + runningServices.HealthServer = health.NewServer(listenHost, cfg.Gateway.Port, "") runningServices.ChannelManager.SetupHTTPServer(addr, runningServices.HealthServer) }