From 24d3ed09524b156e6726853aaa14902c695bf039 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Thu, 17 Nov 2022 01:24:37 +0200 Subject: [PATCH] Ignore another ERROR that's expected in test. Got a test failure in CI because of this. --- test_runner/regress/test_tenant_size.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_runner/regress/test_tenant_size.py b/test_runner/regress/test_tenant_size.py index 03e7129ff7..71778fa64c 100644 --- a/test_runner/regress/test_tenant_size.py +++ b/test_runner/regress/test_tenant_size.py @@ -263,6 +263,8 @@ def test_get_tenant_size_with_multiple_branches(neon_env_builder: NeonEnvBuilder except PageserverApiException as e: # compaction is ok but just retry if this fails; related to #2442 if "cannot lock compaction critical section" in str(e): + # also ignore it in the log + env.pageserver.allowed_errors.append(".*cannot lock compaction critical section.*") time.sleep(1) continue raise