diff --git a/lib/network.py b/lib/network.py index f9dcb6088..d3f515fd4 100644 --- a/lib/network.py +++ b/lib/network.py @@ -752,7 +752,7 @@ def send(self, message): else: return False - except (BrokenPipeError, TimeoutError) as e: + except (BrokenPipeError, TimeoutError, ConnectionResetError) as e: if e.errno == 60: # timeout self.logger.warning(f'{self._id} detected timeout, disconnecting, send failed.')