From 41142f7362d86b41169a7abfe824cb1ba9db8cbe Mon Sep 17 00:00:00 2001 From: withchao <993506633@qq.com> Date: Tue, 1 Apr 2025 16:44:56 +0800 Subject: [PATCH] fix: the version number contains a line break --- internal/api/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/init.go b/internal/api/init.go index 4a1404ffc..378f03eda 100644 --- a/internal/api/init.go +++ b/internal/api/init.go @@ -90,7 +90,7 @@ func Start(ctx context.Context, config *Config, client discovery.Conn, service g //case <-ctx.Done(): //} <-apiCtx.Done() - exitCause := context.Cause(ctx) + exitCause := context.Cause(apiCtx) log.ZWarn(ctx, "api server exit", exitCause) timer := time.NewTimer(time.Second * 15) defer timer.Stop()