From 40e9ca2626a1d94469758b4e7a232fcfa444dd5b Mon Sep 17 00:00:00 2001 From: Evan Baker Date: Thu, 20 Oct 2022 23:43:59 +0000 Subject: [PATCH] fix: hide echo banner in log Signed-off-by: Evan Baker --- cns/healthserver/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cns/healthserver/server.go b/cns/healthserver/server.go index 779b259bd8..f2bf6416df 100644 --- a/cns/healthserver/server.go +++ b/cns/healthserver/server.go @@ -12,7 +12,7 @@ import ( func Start(log *zap.Logger, addr string) { e := echo.New() - + e.HideBanner = true e.GET("/healthz", echo.WrapHandler(http.StripPrefix("/healthz", &healthz.Handler{}))) e.GET("/metrics", echo.WrapHandler(promhttp.HandlerFor(metrics.Registry, promhttp.HandlerOpts{ ErrorHandling: promhttp.HTTPErrorOnError,