From d2ee8b530c3e0f0996083ed524396cf68aa3c031 Mon Sep 17 00:00:00 2001 From: William FH <13333726+hinthornw@users.noreply.github.com> Date: Fri, 9 Feb 2024 08:07:10 -0800 Subject: [PATCH] rm 429 (#416) --- python/langsmith/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/langsmith/client.py b/python/langsmith/client.py index 67158485c..fd56a6ec7 100644 --- a/python/langsmith/client.py +++ b/python/langsmith/client.py @@ -132,7 +132,7 @@ def _default_retry_config() -> Retry: """ retry_params = dict( total=3, - status_forcelist=[502, 503, 504, 408, 425, 429], + status_forcelist=[502, 503, 504, 408, 425], backoff_factor=0.5, # Sadly urllib3 1.x doesn't support backoff_jitter raise_on_redirect=False,