From 212ca76b87cbd7a128218edf0d6829e398f8466c Mon Sep 17 00:00:00 2001 From: Alan Date: Wed, 24 Apr 2024 17:58:12 +0200 Subject: [PATCH] fix(datastore): healthcheck --- internal/datastore/datastore.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/datastore/datastore.go b/internal/datastore/datastore.go index ad57feea..cc00a551 100644 --- a/internal/datastore/datastore.go +++ b/internal/datastore/datastore.go @@ -35,8 +35,7 @@ func (s *Datastore) Exec() { authz.SetAudience("burrito") log.Infof("starting burrito datastore...") e := echo.New() - healthz := e.Group("/healthz") - healthz.GET("", handleHealthz) + e.GET("/healthz", handleHealthz) api := e.Group("/api") api.Use(middleware.Logger())