We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac26d2c commit 817588bCopy full SHA for 817588b
packages/service-library/src/servicelib/rabbitmq/_client.py
@@ -118,6 +118,8 @@ async def _on_message(
118
message_handler, max_retries_upon_error, message
119
)
120
except ChannelInvalidStateError as exc:
121
+ # NOTE: this error can happen as can be seen in aio-pika code
122
+ # see https://github.com/mosquito/aio-pika/blob/master/aio_pika/robust_queue.py
123
_logger.exception(
124
**create_troubleshooting_log_kwargs(
125
"Cannot process message because channel is closed. Message will be requeued by RabbitMQ",
0 commit comments