Skip to content

Commit 9cf7146

Browse files
authored
Merge pull request #32 from booqoffsky/issue-29
Add super.shutdown() call in redis brokers
2 parents 30573da + 82e5475 commit 9cf7146

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

taskiq_redis/redis_broker.py

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def __init__(
4949

5050
async def shutdown(self) -> None:
5151
"""Closes redis connection pool."""
52+
await super().shutdown()
5253
await self.connection_pool.disconnect()
5354

5455
async def listen(self) -> AsyncGenerator[BrokerMessage, None]:

0 commit comments

Comments
 (0)