From 6e152ef23633ce9a1df2d99c045998b3a101b5fb Mon Sep 17 00:00:00 2001 From: Travis Addair Date: Sat, 9 Dec 2023 21:41:29 -0800 Subject: [PATCH] Increase default client timeout to 60s (#119) --- clients/python/lorax/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/python/lorax/client.py b/clients/python/lorax/client.py index e3e23d3ec..d7c559662 100644 --- a/clients/python/lorax/client.py +++ b/clients/python/lorax/client.py @@ -40,7 +40,7 @@ def __init__( base_url: str, headers: Optional[Dict[str, str]] = None, cookies: Optional[Dict[str, str]] = None, - timeout: int = 10, + timeout: int = 60, ): """ Args: @@ -298,7 +298,7 @@ def __init__( base_url: str, headers: Optional[Dict[str, str]] = None, cookies: Optional[Dict[str, str]] = None, - timeout: int = 10, + timeout: int = 60, ): """ Args: