From 188b383c35f0a790e407cb337dd554fccb188f6f Mon Sep 17 00:00:00 2001 From: thot experiment <94414189+thot-experiment@users.noreply.github.com> Date: Wed, 23 Apr 2025 14:53:34 -0700 Subject: [PATCH] change timeout to 7 days (#7765) --- 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 9bc3d76d..384e559d 100644 --- a/comfy_api_nodes/apis/client.py +++ b/comfy_api_nodes/apis/client.py @@ -269,7 +269,7 @@ class SynchronousOperation(Generic[T, R]): files: Optional[Dict[str, Any]] = None, api_base: str = "https://api.comfy.org", auth_token: Optional[str] = None, - timeout: float = 60.0, + timeout: float = 604800.0, verify_ssl: bool = True, ): self.endpoint = endpoint