Silence yet another test failure from race condition between GC and delete.

Another similar case to commit 9ae4da4f31.
This commit is contained in:
Heikki Linnakangas
2022-11-17 22:30:04 +02:00
committed by Heikki Linnakangas
parent fd99e0fbc4
commit dcb79ef08f

View File

@@ -166,6 +166,10 @@ def test_get_tenant_size_with_multiple_branches(neon_env_builder: NeonEnvBuilder
env = neon_env_builder.init_start()
# FIXME: we have a race condition between GC and delete timeline. GC might fail with this
# error. Similar to https://github.com/neondatabase/neon/issues/2671
env.pageserver.allowed_errors.append(".*InternalServerError\\(No such file or directory.*")
tenant_id = env.initial_tenant
main_branch_name, main_timeline_id = env.neon_cli.list_timelines(tenant_id)[0]