You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
720
720
# ...and this may be retryable
721
721
retryable=True
722
+
elif"ConnectionResetError"instr(e):
723
+
# This error manifests as:
724
+
# ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))
725
+
# ...and this may be retryable
726
+
retryable=True
722
727
else:
723
728
retryable=False
724
729
failure_message=f"query_and_describe attempt {attempt+1} from PID {os.getpid()} to {verb}{url} failed with {''ifretryableelse'non-'}retryable ConnectionError: {str(e)}\nAt {get_location()}"
0 commit comments