diff options
author | don-dron <don-dron@yandex-team.com> | 2024-06-13 12:34:05 +0300 |
---|---|---|
committer | don-dron <don-dron@yandex-team.com> | 2024-06-13 12:47:35 +0300 |
commit | 264b87d167603339a09fc58cd7ba5437e844542c (patch) | |
tree | 1f71f5af62338c166c430a36c98bf875ff80f3c5 | |
parent | be66f533d520f6ce67ee7386e807b85230b1c587 (diff) | |
download | ydb-264b87d167603339a09fc58cd7ba5437e844542c.tar.gz |
Revert commit rXXXXXX, YT-21692: Enable ChunkProber by default
cbed5971acf61f658192644a09aa39ddb349a20e
-rw-r--r-- | yt/yt/client/chunk_client/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/chunk_client/config.cpp b/yt/yt/client/chunk_client/config.cpp index c385a84f07..c7431e126b 100644 --- a/yt/yt/client/chunk_client/config.cpp +++ b/yt/yt/client/chunk_client/config.cpp @@ -169,7 +169,7 @@ void TReplicationReaderConfig::Register(TRegistrar registrar) registrar.Parameter("chunk_meta_cache_failure_probability", &TThis::ChunkMetaCacheFailureProbability) .Default(); registrar.Parameter("use_chunk_prober", &TThis::UseChunkProber) - .Default(true); + .Default(false); registrar.Postprocessor([] (TThis* config) { // Seems unreasonable to make backoff greater than half of total session timeout. |