fix: use is_initialized instead of is_open

This commit is contained in:
Jonathan Kössler 2024-08-16 12:37:28 +02:00
parent b3f1529be2
commit 2bc332831e
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ class AsyncQueueManager:
async def is_ready(self) -> bool:
await self.connect()
return await self.channel.is_open
return self.channel.is_initialized
async def setup_exchanges(self) -> None:
self.tenant_exchange = await self.channel.declare_exchange(

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "pyinfra"
version = "3.2.0"
version = "3.2.1"
description = ""
authors = ["Team Research <research@knecon.com>"]
license = "All rights reseverd"