feat(chalice): changed health check endpoint

This commit is contained in:
Taha Yassine Kraiem 2023-03-31 10:59:22 +01:00
parent 655797865e
commit 8152d9c81f

View file

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