From 20853072f151a27efafc64435582f1a06a17e212 Mon Sep 17 00:00:00 2001 From: Slava Date: Mon, 3 Mar 2025 19:42:32 +0000 Subject: [PATCH] Eddited proxy/healthcheck.py --- proxy/healthcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/healthcheck.py b/proxy/healthcheck.py index d3e5b43..689f244 100755 --- a/proxy/healthcheck.py +++ b/proxy/healthcheck.py @@ -6,6 +6,6 @@ def init_healthcheck(app): def healthcheck(): """Health check route to monitor service status""" try: - return Response("healthy", status=200) + return Response("Works normally", status=200) except Exception as e: return f"Error: {e}", 500