testing changing cache

This commit is contained in:
2025-03-03 23:25:28 +03:00
parent 3e8e96943f
commit dd90845c65
3 changed files with 41 additions and 45 deletions

View File

@@ -6,6 +6,6 @@ def init_healthcheck(app):
def healthcheck():
"""Health check route to monitor service status"""
try:
return Response("Works normally", status=200)
return Response("healthy", status=200)
except Exception as e:
return f"Error: {e}", 500