api_nodes: reduce default timeout from 7 days to 2 hours

This commit is contained in:
bigcat88 2025-09-18 10:43:02 +03:00
parent dd611a7700
commit 9fb268ed79
No known key found for this signature in database
GPG Key ID: 1F0BF0EC3CF22721

View File

@ -683,7 +683,7 @@ class SynchronousOperation(Generic[T, R]):
auth_token: Optional[str] = None, auth_token: Optional[str] = None,
comfy_api_key: Optional[str] = None, comfy_api_key: Optional[str] = None,
auth_kwargs: Optional[Dict[str, str]] = None, auth_kwargs: Optional[Dict[str, str]] = None,
timeout: float = 604800.0, timeout: float = 7200.0,
verify_ssl: bool = True, verify_ssl: bool = True,
content_type: str = "application/json", content_type: str = "application/json",
multipart_parser: Callable | None = None, multipart_parser: Callable | None = None,