We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603bbf0 commit 5659767Copy full SHA for 5659767
sdks/python/apache_beam/utils/subprocess_server.py
@@ -189,7 +189,7 @@ def start(self):
189
("grpc.max_receive_message_length", -1),
190
("grpc.max_send_message_length", -1),
191
# Default: 20000ms (20s), increased to 10 minutes for stability
192
- ("grpc.keepalive_timeout_ms", 600000),
+ ("grpc.keepalive_timeout_ms", 600_000),
193
# Default: 2, set to 0 to allow unlimited pings without data
194
("grpc.http2.max_pings_without_data", 0),
195
# Default: False, set to True to allow keepalive pings when no calls
0 commit comments