From 64fc119ca70cb037c93fcd48b83854a97298776b Mon Sep 17 00:00:00 2001 From: VivianDee <115420678+VivianDee@users.noreply.github.com> Date: Fri, 10 Apr 2026 10:55:09 +0100 Subject: [PATCH] Update events_service.py --- app/api/integrations/events_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/integrations/events_service.py b/app/api/integrations/events_service.py index 8d8284c..9547c16 100644 --- a/app/api/integrations/events_service.py +++ b/app/api/integrations/events_service.py @@ -62,7 +62,7 @@ class EventServiceIntegration: logger.info(f"Health Check URL: {url}") try: - response = httpx.get(url, timeout=5.0) + response = httpx.get(url, timeout=EventServiceIntegration.TIMEOUT) logger.info(f"Health Check Response: {response.text}") return response except Exception as e: