From 8ba3b38c227e4bb4f5cd0ba996efbb494851558c Mon Sep 17 00:00:00 2001 From: Aleksei Borzenkov Date: Thu, 11 Jan 2024 10:53:05 +0000 Subject: [PATCH] Fix Coordinator::RestoreTenantConfiguration test KIKIMR-20710 --- ydb/core/tx/coordinator/coordinator_ut.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ydb/core/tx/coordinator/coordinator_ut.cpp b/ydb/core/tx/coordinator/coordinator_ut.cpp index bb8f0873aa18..4269cb2e3096 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 coordinators; for (auto& pr : hooks.PersistConfig_) {