diff --git a/attachment_synchronize/models/attachment_queue.py b/attachment_synchronize/models/attachment_queue.py index 3b908742dd5..3d6b18bbeae 100644 --- a/attachment_synchronize/models/attachment_queue.py +++ b/attachment_synchronize/models/attachment_queue.py @@ -47,6 +47,11 @@ def _run(self): str(err), seconds=self._timeout_retry_seconds(), ) from err + except ConnectionResetError as err: + raise RetryableJobError( + str(err), + seconds=self._timeout_retry_seconds(), + ) from err return res def _timeout_retry_seconds(self):