We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 812beee commit a325ed4Copy full SHA for a325ed4
aiokafka/producer/sender.py
@@ -175,7 +175,7 @@ def _sender_routine(self):
175
except (ProducerFenced, OutOfOrderSequenceNumber,
176
TransactionalIdAuthorizationFailed):
177
raise
178
- except Exception: # pragma: no cover
+ except Exception as exc: # pragma: no cover
179
log.error("Unexpected error in sender routine", exc_info=True)
180
if self._on_irrecoverable_error:
181
res = self._on_irrecoverable_error(exc)
0 commit comments