diff options
author | ilnaz <ilnaz@ydb.tech> | 2023-07-24 23:31:25 +0300 |
---|---|---|
committer | ilnaz <ilnaz@ydb.tech> | 2023-07-24 23:31:25 +0300 |
commit | 9deead2cf2bcdf03973108f1703a0b52c33e0813 (patch) | |
tree | ba4f8cd2959bf2a64d89abb84249859e7385f37a | |
parent | 93c9bcb654b3d1158b8b0b3c7c59985da88d2c68 (diff) | |
download | ydb-9deead2cf2bcdf03973108f1703a0b52c33e0813.tar.gz |
Enable Sentinel by default KIKIMR-18054
-rw-r--r-- | ydb/core/cms/config.h | 2 | ||||
-rw-r--r-- | ydb/core/protos/cms.proto | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ydb/core/cms/config.h b/ydb/core/cms/config.h index 049e0ca6510..6eeb5407111 100644 --- a/ydb/core/cms/config.h +++ b/ydb/core/cms/config.h @@ -11,7 +11,7 @@ namespace NKikimr::NCms { struct TCmsSentinelConfig { - bool Enable = false; + bool Enable = true; bool DryRun = false; TDuration UpdateConfigInterval; diff --git a/ydb/core/protos/cms.proto b/ydb/core/protos/cms.proto index 4f0e2c3a2db..6658e0611f3 100644 --- a/ydb/core/protos/cms.proto +++ b/ydb/core/protos/cms.proto @@ -408,7 +408,7 @@ message TCmsConfig { optional uint32 Limit = 2; } - optional bool Enable = 1; + optional bool Enable = 1 [default = true]; // Updater's config optional uint64 UpdateConfigInterval = 2 [default = 3600000000]; optional uint64 RetryUpdateConfig = 3 [default = 60000000]; |