tests: broaden allow-list for #10720 workaround (#10807)

## Problem

In #10752 I used an overly-strict regex that only ignored error on a
particular key.

## Summary of changes

- Drop key from regex so it matches all such errors
This commit is contained in:
John Spray
2025-02-13 16:15:04 +00:00
committed by GitHub
parent 8c2f85b209
commit ae463f366b
2 changed files with 2 additions and 2 deletions

View File

@@ -1821,7 +1821,7 @@ def test_sharding_gc(
# TODO: remove when https://github.com/neondatabase/neon/issues/10720 is fixed
ps.allowed_errors.extend(
[
".*could not find data for key 020000000000000000000000000000000000.*",
".*could not find data for key.*",
".*could not ingest record.*",
]
)

View File

@@ -318,7 +318,7 @@ def test_scrubber_physical_gc_ancestors(neon_env_builder: NeonEnvBuilder, shard_
# TODO: remove when https://github.com/neondatabase/neon/issues/10720 is fixed
ps.allowed_errors.extend(
[
".*could not find data for key 020000000000000000000000000000000000.*",
".*could not find data for key.*",
".*could not ingest record.*",
]
)