Corey
Corey
Since the new release aioamqp uses pamqp to encode/decode frames. This also includes properties, but a subtle difference in naming for the 'type' property caused problems when I upgraded to...
Fixes #240
Since [Python 3.8](https://github.com/python/cpython/commit/431b540bf79f0982559b1b0e420b1b085f667bb7), aioamqp no longer catches and reraises `asyncio.CancelledError` in [protocol.run](https://github.com/Polyconseil/aioamqp/blob/master/aioamqp/protocol.py#L318), leading to delayed manual disconnections. A fix is just handling both `asyncio.CancelledError` and `Exception` like so: ```python async...