Mosquito
Mosquito
Please try to use 0.4.8 docker image or update from release files
@healfy is it actually reproduces?
Please see [troubleshooting section](https://github.com/mosquito/caio#troubleshooting) in [caio](https://github.com/mosquito/caio)
@ilookhandsometoday in the normal case, the operating system seek to the beginning or end of the file, however, when using the asynchronous API, there is no guarantee that the file...
Please provide your RabbitMQ version and try using the new one. A similar problem has been found in pamqp before.
Using channel after CancelledError exception in basic_consume callback can cause connection to close
Let's see to the [`aiormq.base._cancel_tasks`](https://github.com/mosquito/aiormq/blob/master/aiormq/base.py#L119) method. It's cancelling all tasks for `FutureStore`. So, you are totally right, it's useless to send frames for closed channel, but actually you doesn't send...
The simple way to receive this exception is to await the `Connection.closing` future.
You can peek into the aio-pika code. There is implemented just what you need. See RobustConnection/RobustChannel/RobustQueue/etc...
Please provide minimal code example
This means that the server closed the connection when the background task tried to get the frame header. You should not react to this, but I don't want to hide...