aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnaury <snaury@ydb.tech>2023-07-31 15:50:15 +0300
committersnaury <snaury@ydb.tech>2023-07-31 15:50:15 +0300
commit7155473fb8810c965911d3ffc38a44dd8618a36e (patch)
tree9d2681dad493587ee021402cc26fe9e4adb2b02b
parentcdb1447faeea735496e3b3d275f6468d2e7ab574 (diff)
downloadydb-7155473fb8810c965911d3ffc38a44dd8618a36e.tar.gz
Change default streaming timeout to 600 seconds KIKIMR-18724
-rw-r--r--ydb/core/protos/stream.proto2
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];
}