Skip to content

Commit 50b1346

Browse files
authored
Merge pull request #9 from taskiq-python/feature/startup
Added super().startup() call on startup.
2 parents 900af1f + 9b9ce09 commit 50b1346

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

taskiq_aio_pika/broker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ def __init__( # noqa: WPS211
116116

117117
async def startup(self) -> None: # noqa: WPS217
118118
"""Create exchange and queue on startup."""
119+
await super().startup()
119120
self.write_conn = await connect_robust(
120121
self.url,
121122
loop=self._loop,

0 commit comments

Comments
 (0)