From 441ca423a50f944601922d54776a7d7644066e35 Mon Sep 17 00:00:00 2001 From: Automated Action Date: Mon, 19 May 2025 11:11:17 +0000 Subject: [PATCH] Revert health endpoint response format to original --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index d8e4b2c..f7382f2 100644 --- a/main.py +++ b/main.py @@ -36,7 +36,7 @@ app.include_router(frontend_router) @app.get("/health", status_code=200) def health(): """Health check endpoint""" - return {"message": f"{settings.PROJECT_NAME} is healthy"} + return {"status": "healthy"} if __name__ == "__main__":