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())