summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandrew-rykov <[email protected]>2023-09-12 12:20:24 +0300
committerandrew-rykov <[email protected]>2023-09-12 12:38:30 +0300
commitf51b731613685672a0e6bc9a3cc9be77d585cb78 (patch)
tree2c780f70d616422a7aae02f9b60c9db81b32cb4e
parent1beeecb402332e19c0f181f8be9676dc64a41675 (diff)
KIKIMR-14195 increase number of retries to 20 - merge trunk
-rw-r--r--ydb/core/health_check/health_check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/health_check/health_check.cpp b/ydb/core/health_check/health_check.cpp
index 27f803d4c6a..3b99439a84d 100644
--- a/ydb/core/health_check/health_check.cpp
+++ b/ydb/core/health_check/health_check.cpp
@@ -439,7 +439,7 @@ public:
THashSet<TNodeId> StorageNodeIds;
THashSet<TNodeId> ComputeNodeIds;
std::unordered_map<std::pair<TNodeId, int>, ui32> NodeRetries;
- ui32 MaxRetries = 3;
+ ui32 MaxRetries = 20;
TDuration RetryDelay = TDuration::MilliSeconds(250);
THashMap<TString, TDatabaseState> DatabaseState;