From 6f95816fb4296f0a71da0e608510f630c89d7973 Mon Sep 17 00:00:00 2001 From: boris Date: Mon, 22 Sep 2025 20:36:53 +0100 Subject: [PATCH] Changed healthcheck endpoint output --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 0da2d19..901059a 100644 --- a/app/main.py +++ b/app/main.py @@ -10,4 +10,4 @@ app.include_router(keys.router, prefix=f"{settings.API_V1_STR}/keys", tags=["key # Health endpoint (useful for docker, agent and uptime) @app.get("/healthz") def healthz(): - return {"status": 'ok'} \ No newline at end of file + return {"ok": True} \ No newline at end of file