From 743bfafc36ac00c5470eed89611c585ce2406e28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= <16805946+edgarrmondragon@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:39:31 -0600 Subject: [PATCH] fix: All HTTP timeout exceptions are now retried in REST and GraphQL streams (#2697) --- singer_sdk/streams/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/singer_sdk/streams/rest.py b/singer_sdk/streams/rest.py index 4eef8e268..7f1f6fb89 100644 --- a/singer_sdk/streams/rest.py +++ b/singer_sdk/streams/rest.py @@ -253,7 +253,7 @@ def request_decorator(self, func: t.Callable) -> t.Callable: ( ConnectionResetError, RetriableAPIError, - requests.exceptions.ReadTimeout, + requests.exceptions.Timeout, requests.exceptions.ConnectionError, requests.exceptions.ChunkedEncodingError, requests.exceptions.ContentDecodingError,