aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksei Borzenkov <snaury@ydb.tech>2024-01-11 14:55:48 +0300
committerGitHub <noreply@github.com>2024-01-11 14:55:48 +0300
commit23e1d593ab25ec07220491067c593c93a9c5baf5 (patch)
treef2db1f43adc82369e9c3288769647d5bb6582806
parent53705818c35a30a0917035eda428700e514565a5 (diff)
downloadydb-23e1d593ab25ec07220491067c593c93a9c5baf5.tar.gz
Fix Coordinator::RestoreTenantConfiguration test KIKIMR-20710 (#938)
-rw-r--r--ydb/core/tx/coordinator/coordinator_ut.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ydb/core/tx/coordinator/coordinator_ut.cpp b/ydb/core/tx/coordinator/coordinator_ut.cpp
index bb8f0873aa..4269cb2e30 100644
--- a/ydb/core/tx/coordinator/coordinator_ut.cpp
+++ b/ydb/core/tx/coordinator/coordinator_ut.cpp
@@ -440,7 +440,8 @@ namespace NKikimr::NFlatTxCoordinator::NTest {
Cerr << (TStringBuilder() << "Starting a database tenant" << Endl);
tenants.Run("/Root/db1", 1);
- runtime.SimulateSleep(TDuration::Seconds(1));
+ Cerr << (TStringBuilder() << "Sleeping for tenant to start" << Endl);
+ runtime.SimulateSleep(TDuration::Seconds(5));
UNIT_ASSERT_C(hooks.PersistConfig_.size() > 0, "Expected coordinators to attempt to persist configs");
std::vector<ui64> coordinators;
for (auto& pr : hooks.PersistConfig_) {