|
except ConnectionError as exc: |
It catches the built-in ConnectionError. I think it should it should also except the redis.exceptions.ConnectionError (it's not a subclass of the built-in so it won't resolve properly), maybe also redis.exceptions.TimeoutError? And any other you think might be necessary.
taskiq-redis/taskiq_redis/redis_broker.py
Line 136 in 39c6b7c
It catches the built-in ConnectionError. I think it should it should also except the
redis.exceptions.ConnectionError(it's not a subclass of the built-in so it won't resolve properly), maybe alsoredis.exceptions.TimeoutError? And any other you think might be necessary.