From 836aa08b4349e1699c77c5b98393f959024b09e4 Mon Sep 17 00:00:00 2001 From: Evgeny Gusarov Date: Mon, 27 Jul 2026 15:54:18 +0300 Subject: [PATCH] Disable graph reconnecting session, bump v0.13.4 --- pyproject.toml | 2 +- sw_utils/graph/client.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()