diff options
author | osidorkin <[email protected]> | 2025-01-28 12:50:20 +0300 |
---|---|---|
committer | osidorkin <[email protected]> | 2025-01-28 13:09:15 +0300 |
commit | f1f06f6c2c5c615da6dd44aa9e6dff98dd56b5a4 (patch) | |
tree | afd1e46978703e28089464e9733faf4fec555cb1 | |
parent | f4bd98f29f73c2aa2e5bca0e2c4b1f63328165ab (diff) |
Enable replication card cache long polling by default
commit_hash:03d6e9d5206409e4e3a69e10bed498b91bd26396
-rw-r--r-- | yt/yt/client/chaos_client/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/chaos_client/config.cpp b/yt/yt/client/chaos_client/config.cpp index 2dce364270a..777da43a611 100644 --- a/yt/yt/client/chaos_client/config.cpp +++ b/yt/yt/client/chaos_client/config.cpp @@ -7,7 +7,7 @@ namespace NYT::NChaosClient { void TReplicationCardCacheConfig::Register(TRegistrar registrar) { registrar.Parameter("enable_watching", &TThis::EnableWatching) - .Default(false) + .Default(true) .DontSerializeDefault(); } |