diff --git a/pyproject.toml b/pyproject.toml index aebc796..2f05949 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sw-utils" -version = "v0.13.3" +version = "v0.13.4" description = "StakeWise Python utils" authors = ["StakeWise Labs "] license = "GPL-3.0-or-later" diff --git a/sw_utils/graph/client.py b/sw_utils/graph/client.py index b8ac36c..810de2e 100644 --- a/sw_utils/graph/client.py +++ b/sw_utils/graph/client.py @@ -33,7 +33,7 @@ def __init__( self.session: AsyncClientSession | None = None async def setup(self) -> None: - self.session = await self.gql_client.connect_async(reconnecting=True, retry_execute=False) + self.session = await self.gql_client.connect_async(reconnecting=False) async def disconnect(self) -> None: await self.gql_client.close_async()