From 648fe7c92d9d13e58754478578faaa5fc3c4b538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arpad=20M=C3=BCller?= Date: Mon, 22 Jan 2024 18:26:22 +0100 Subject: [PATCH] Add it to the allowed errors --- test_runner/regress/test_tenant_delete.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test_runner/regress/test_tenant_delete.py b/test_runner/regress/test_tenant_delete.py index 286e7aecf0..4ac566876b 100644 --- a/test_runner/regress/test_tenant_delete.py +++ b/test_runner/regress/test_tenant_delete.py @@ -789,7 +789,7 @@ def test_tenant_delete_races_timeline_creation( ) # This can occur sometimes. - CONFLICT_MESSAGE = "Precondition failed: Invalid state Stopping. Expected Active or Broken" + CONFLICT_MESSAGE = ".*Precondition failed: Invalid state Stopping. Expected Active or Broken.*" env.pageserver.allowed_errors.extend( [ @@ -799,6 +799,8 @@ def test_tenant_delete_races_timeline_creation( ".*POST.*/timeline.* request was dropped before completing", # Timeline creation runs into this error CANCELLED_ERROR, + # Timeline deletion can run into this error during deletion + CONFLICT_MESSAGE, ] )