From 3662e2bc52c075318729bb449be0e0c6fdeb0694 Mon Sep 17 00:00:00 2001 From: abelanger5 Date: Mon, 3 Jun 2024 15:19:39 -0400 Subject: [PATCH] fix: remove max_pings_without_data python (#36) --- hatchet_sdk/connection.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hatchet_sdk/connection.py b/hatchet_sdk/connection.py index c9a44146..78fe16f8 100644 --- a/hatchet_sdk/connection.py +++ b/hatchet_sdk/connection.py @@ -32,7 +32,7 @@ def new_conn(config, aio=False): ("grpc.keepalive_time_ms", 10 * 1000), ("grpc.keepalive_timeout_ms", 60 * 1000), ("grpc.client_idle_timeout_ms", 60 * 1000), - ("grpc.http2.max_pings_without_data", 5), + ("grpc.http2.max_pings_without_data", 0), ("grpc.keepalive_permit_without_calls", 1), ] diff --git a/pyproject.toml b/pyproject.toml index a95a6c67..76fceee6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hatchet-sdk" -version = "0.26.0" +version = "0.26.1" description = "" authors = ["Alexander Belanger "] readme = "README.md"