Handle /healthz for liveness checks. (#1264)

This commit is contained in:
stashist
2021-04-09 02:06:02 +02:00
committed by GitHub
parent 2edcdeaeb9
commit 4462b3cc8e
2 changed files with 2 additions and 0 deletions

View File

@@ -124,6 +124,7 @@ func Start() {
r := chi.NewRouter()
r.Use(middleware.Heartbeat("/healthz"))
r.Use(authenticateHandler())
r.Use(middleware.Recoverer)