Skip to content

Commit 4377561

Browse files
committed
fix: rectify status value
1 parent dc6a24c commit 4377561

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def rate_limit_exceeded_handler(
6868
@app.get("/v1/health")
6969
async def health() -> dict[str, str]:
7070
"""Endpoint to check if the service is alive."""
71-
return {"status": "ok"}
71+
return {"status": "success", "message": "service is healthy"}
7272

7373

7474
@app.post("/v1")

0 commit comments

Comments
 (0)