Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 886f21a

Browse files
authored
Merge pull request #368 from jumpstarter-dev/fix-lazy-grpc-keepalive
Don't stop grpc keepalives after 5 pings
2 parents e0a3c55 + 0a9b71c commit 886f21a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/jumpstarter/jumpstarter/common

packages/jumpstarter/jumpstarter/common/grpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _override_default_grpc_options(grpc_options: dict[str, str | int] | None) ->
4949
# we keep a low keepalive time to avoid idle timeouts on cloud load balancers
5050
("grpc.keepalive_time_ms", 20000),
5151
("grpc.keepalive_timeout_ms", 5000),
52-
("grpc.http2.max_pings_without_data", 5),
52+
("grpc.http2.max_pings_without_data", 0),
5353
("grpc.keepalive_permit_without_calls", 1),
5454
)
5555
options = dict(defaults)

0 commit comments

Comments
 (0)