Merge branch 'fix/RES-820-channel-opening' into 'master'

fix: use is_initialized instead of is_open

See merge request knecon/research/pyinfra!89
This commit is contained in:
Jonathan Kössler 2024-08-16 14:23:46 +02:00
commit 5020e54dcc
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"