Skip to content

Commit

Permalink
Merge pull request #9 from taskiq-python/feature/startup
Browse files Browse the repository at this point in the history
Added super().startup() call on startup.
  • Loading branch information
s3rius authored Sep 17, 2022
2 parents 900af1f + 9b9ce09 commit 50b1346
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions taskiq_aio_pika/broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def __init__( # noqa: WPS211

async def startup(self) -> None: # noqa: WPS217
"""Create exchange and queue on startup."""
await super().startup()
self.write_conn = await connect_robust(
self.url,
loop=self._loop,
Expand Down

0 comments on commit 50b1346

Please # to comment.