diff --git a/snikket_web/main.py b/snikket_web/main.py index f14ec5a..eeb9406 100644 --- a/snikket_web/main.py +++ b/snikket_web/main.py @@ -165,5 +165,5 @@ async def avatar(from_: str, code: str) -> quart.Response: return response @bp.route("/_health") -async def health() -> str: - return "OK" +async def health() -> Response: + return Response("STATUS OK", content_type="text/plain")