Skip to content

Commit

Permalink
fix: remove max_pings_without_data python (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
abelanger5 authored Jun 3, 2024
1 parent 2727ea1 commit 3662e2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hatchet_sdk/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
]

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hatchet-sdk"
version = "0.26.0"
version = "0.26.1"
description = ""
authors = ["Alexander Belanger <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 3662e2b

Please sign in to comment.