From 4cfc98de9dd556ced880d91beb721cd85dee2152 Mon Sep 17 00:00:00 2001 From: alpha nerd Date: Tue, 5 May 2026 09:18:19 +0200 Subject: [PATCH] fix: timeouts --- nomyo/SecureCompletionClient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nomyo/SecureCompletionClient.py b/nomyo/SecureCompletionClient.py index 6aa5379..9c503a8 100644 --- a/nomyo/SecureCompletionClient.py +++ b/nomyo/SecureCompletionClient.py @@ -301,7 +301,7 @@ class SecureCompletionClient: verify_ssl = self.router_url.startswith("https://") async with httpx.AsyncClient( - timeout=60.0, + timeout=900.0, verify=verify_ssl, # Verify SSL/TLS certificates for HTTPS ) as client: response = await client.get(url) @@ -673,7 +673,7 @@ class SecureCompletionClient: await asyncio.sleep(delay) try: - async with httpx.AsyncClient(timeout=60.0) as client: + async with httpx.AsyncClient(timeout=900.0) as client: response = await client.post( url, headers=headers,