Mathias Fröjdman

Results 3 comments of Mathias Fröjdman

My pull request is probably responsible for that. It was added to support server acks aka the publish confirm extension of RabbitMQ. The trouble is that there is no way...

There's an asyncio task running the dispatcher that reads messages from the server and calls handler methods; `Channel.basic_deliver` is called to deliver messages to your consumer callback (https://github.com/Polyconseil/aioamqp/blob/cbb137920b000db3d99adfa986ad9a7dc9b58876/aioamqp/channel.py#L641). The problem...

`index()` creates a new channel on every request, but doesn't close them ever. Does the problem reproduce with a `yield from channel.close()` before `return Response()`? This doesn't sound like abusing...