diff options
author | snaury <snaury@ydb.tech> | 2023-07-31 15:50:15 +0300 |
---|---|---|
committer | snaury <snaury@ydb.tech> | 2023-07-31 15:50:15 +0300 |
commit | 7155473fb8810c965911d3ffc38a44dd8618a36e (patch) | |
tree | 9d2681dad493587ee021402cc26fe9e4adb2b02b | |
parent | cdb1447faeea735496e3b3d275f6468d2e7ab574 (diff) | |
download | ydb-7155473fb8810c965911d3ffc38a44dd8618a36e.tar.gz |
Change default streaming timeout to 600 seconds KIKIMR-18724
-rw-r--r-- | ydb/core/protos/stream.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/protos/stream.proto b/ydb/core/protos/stream.proto index 1ec1547ec0..26c822d88d 100644 --- a/ydb/core/protos/stream.proto +++ b/ydb/core/protos/stream.proto @@ -10,7 +10,7 @@ message TStreamingConfig { optional uint32 MaxQuotaSize = 4 [default = 5]; optional uint32 MaxStreamingShards = 5 [default = 5]; // Timeouts used to interrupt inactive streams. - optional uint64 InactiveClientTimeout = 6 [default = 60000000]; + optional uint64 InactiveClientTimeout = 6 [default = 600000000]; optional uint64 InactiveServerTimeout = 7 [default = 0]; } |