Eddited proxy/healthcheck.py

This commit is contained in:
Slava
2025-03-03 19:42:32 +00:00
parent 0cea709572
commit 20853072f1

View File

@@ -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