We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aaa097 commit 3424e3dCopy full SHA for 3424e3d
1 file changed
src/sumo/wrapper/_retry_strategy.py
@@ -19,7 +19,8 @@ def _log_retry_info(retry_state):
19
def _is_retryable_exception(exception):
20
return isinstance(
21
exception,
22
- (httpx.TimeoutException, httpx.NetworkError, httpx.ProxyError),
+ (httpx.TimeoutException, httpx.NetworkError,
23
+ httpx.ProtocolError, httpx.ProxyError),
24
)
25
26
0 commit comments