Skip to content

Commit

Permalink
fix: All HTTP timeout exceptions are now retried in REST and GraphQL …
Browse files Browse the repository at this point in the history
…streams (#2697)
  • Loading branch information
edgarrmondragon authored Oct 2, 2024
1 parent eb48cf6 commit 743bfaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/streams/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 743bfaf

Please sign in to comment.