diff options
author | Aleksei Borzenkov <snaury@ydb.tech> | 2024-01-11 14:55:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-11 14:55:48 +0300 |
commit | 23e1d593ab25ec07220491067c593c93a9c5baf5 (patch) | |
tree | f2db1f43adc82369e9c3288769647d5bb6582806 | |
parent | 53705818c35a30a0917035eda428700e514565a5 (diff) | |
download | ydb-23e1d593ab25ec07220491067c593c93a9c5baf5.tar.gz |
Fix Coordinator::RestoreTenantConfiguration test KIKIMR-20710 (#938)
-rw-r--r-- | ydb/core/tx/coordinator/coordinator_ut.cpp | 3 |
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_) { |