mosquito / aio-pika

AMQP 0.9 client designed for asyncio and humans.
https://aio-pika.readthedocs.org/
Apache License 2.0
1.18k stars 186 forks source link

Memory leak on channel #494

Closed decaz closed 1 year ago

decaz commented 1 year ago

When declaring a queue its close callbacks are being added to close callbacks of a channel: https://github.com/mosquito/aio-pika/blob/b0fcc56c39b329861b26bbdab271ab08f4ff8692/aio_pika/channel.py#L327

But there is no removing of these callbacks.