From d1deef0d6bb21041a030a3e7e98ff21da2aa00c7 Mon Sep 17 00:00:00 2001 From: John Spray Date: Thu, 16 Jan 2025 08:53:13 +0000 Subject: [PATCH] tests: make reconcile_until_idle more aggressive by default --- test_runner/fixtures/neon_fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/fixtures/neon_fixtures.py b/test_runner/fixtures/neon_fixtures.py index 8909f7f249..863dbb3548 100644 --- a/test_runner/fixtures/neon_fixtures.py +++ b/test_runner/fixtures/neon_fixtures.py @@ -2105,7 +2105,7 @@ class NeonStorageController(MetricsGetter, LogUtils): log.info(f"reconcile_all waited for {n} shards") return n - def reconcile_until_idle(self, timeout_secs=30, max_interval=5): + def reconcile_until_idle(self, timeout_secs=30, max_interval=1): start_at = time.time() n = 1 delay_sec = 0.1