From f8f73d117b19e936b95643faa6f93a942387a982 Mon Sep 17 00:00:00 2001 From: Steven Date: Sun, 26 Nov 2023 23:33:34 +0800 Subject: [PATCH] chore: update healthz message --- server/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/server.go b/server/server.go index 80790081..84efee6e 100644 --- a/server/server.go +++ b/server/server.go @@ -101,7 +101,7 @@ func NewServer(ctx context.Context, profile *profile.Profile, store *store.Store // Register healthz endpoint. e.GET("/healthz", func(c echo.Context) error { - return c.String(http.StatusOK, "OK!\n") + return c.String(http.StatusOK, "Service ready.") }) // Register API v1 endpoints.