diff --git a/app/main.py b/app/main.py index 6a9607d..e8cca20 100644 --- a/app/main.py +++ b/app/main.py @@ -14,11 +14,11 @@ def root(): @app.get("/health") def health(): if not _healthy: - return JSONResponse(status_code=500, content={"status": "unhealthy"}) + return {"status": "unhealthy"}, 503 return {"status": "ok"} @app.post("/break") def break_health(): global _healthy _healthy = False - return {"message": "Servis je sada nezdrav — ocekuj restart"} \ No newline at end of file + return {"message": "Servis je sada nezdrav"} \ No newline at end of file