From 8152d9c81f9037dc8448bce88b932a6bf23b940a Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Fri, 31 Mar 2023 10:59:22 +0100 Subject: [PATCH] feat(chalice): changed health check endpoint --- api/routers/subs/health.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/routers/subs/health.py b/api/routers/subs/health.py index fdef52509..65c39ad4f 100644 --- a/api/routers/subs/health.py +++ b/api/routers/subs/health.py @@ -6,7 +6,7 @@ from routers.base import get_routers public_app, app, app_apikey = get_routers() -@app.get('/health', tags=["health-check"]) +@app.get('/healthz', tags=["health-check"]) def get_global_health_status(): return {"data": health.get_health()}