From 8295d758a3222d41cfc218c017155d71def89350 Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Sat, 3 May 2025 14:59:49 -0700 Subject: [PATCH] Default request timeout: one hour. (#116) --- comfy_api_nodes/apis/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api_nodes/apis/client.py b/comfy_api_nodes/apis/client.py index 032c02b2e..1d9f40881 100644 --- a/comfy_api_nodes/apis/client.py +++ b/comfy_api_nodes/apis/client.py @@ -157,7 +157,7 @@ class ApiClient: self, base_url: str, api_key: Optional[str] = None, - timeout: float = 30.0, + timeout: float = 3600.0, verify_ssl: bool = True, ): self.base_url = base_url