From fa8be8f08af1d2af8557a1010ab4c9d0c2959f1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brage=20Skj=C3=B8nborg?= Date: Sun, 18 Jan 2026 16:55:41 +0100 Subject: [PATCH] Adjustments --- apps/py-metadata/api/health_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/py-metadata/api/health_api.py b/apps/py-metadata/api/health_api.py index 651f27d3..fd5376d3 100644 --- a/apps/py-metadata/api/health_api.py +++ b/apps/py-metadata/api/health_api.py @@ -43,7 +43,7 @@ async def health(): return JSONResponse( status_code=200 if status else 500, content={ - "status": "ok" if status else "error", + "status": "healthy" if status else "unhealthy", "database": db_ok, "database_error": db_error, "worker": worker_ok,