Matt Westcott
Matt Westcott
Sometimes random integration tests fail with `aredis.exceptions.ResponseError: Wrong number of response items from pipeline execution`. I believe this is a bug in `aredis` caused by failing to disconnect and clean...
Sometimes random integration tests on Python 3.7 fail when exiting due to an uncaught `ConnectionError` from our Redis driver [aredis](https://github.com/NoneGG/aredis). I believe this is a bug in `aredis` caused by...
## Checklist - Python 3.7 and 3.8 - Using hiredis - Using uvloop - Exists on master ## Steps to reproduce I found unexpected errors in 'flaky' CI integration tests...
In Python 3.7, `asyncio.CancelledError` is a subclass of `Exception`. https://github.com/NoneGG/aredis/blob/master/aredis/connection.py#L416 The above code (in the master branch) therefore catches `CancelledError` and raises a different exception. This is a problem for...