Skip to content

Commit 435bf45

Browse files
authored
tests: remove obsolete err log whitelisting (#11069)
The pageserver read path now supports overlapped in-memory and image layers via #11000. These allowed errors are now obsolete.
1 parent 65addfc commit 435bf45

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

test_runner/regress/test_sharding.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1814,14 +1814,3 @@ def test_sharding_gc(
18141814
shard_gc_cutoff_lsn = Lsn(shard_index["metadata_bytes"]["latest_gc_cutoff_lsn"])
18151815
log.info(f"Shard {shard_number} cutoff LSN: {shard_gc_cutoff_lsn}")
18161816
assert shard_gc_cutoff_lsn == shard_0_gc_cutoff_lsn
1817-
1818-
for ps in env.pageservers:
1819-
# This is not okay, but it's not a scrubber bug: it's a pageserver issue that is exposed by
1820-
# the specific pattern of aggressive checkpointing+image layer generation + GC that this test does.
1821-
# TODO: remove when https://github.com/neondatabase/neon/issues/10720 is fixed
1822-
ps.allowed_errors.extend(
1823-
[
1824-
".*could not find data for key.*",
1825-
".*could not ingest record.*",
1826-
]
1827-
)

test_runner/regress/test_storage_scrubber.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -312,17 +312,6 @@ def test_scrubber_physical_gc_ancestors(neon_env_builder: NeonEnvBuilder, shard_
312312
drop_local_state(env, tenant_id)
313313
workload.validate()
314314

315-
for ps in env.pageservers:
316-
# This is not okay, but it's not a scrubber bug: it's a pageserver issue that is exposed by
317-
# the specific pattern of aggressive checkpointing+image layer generation + GC that this test does.
318-
# TODO: remove when https://github.com/neondatabase/neon/issues/10720 is fixed
319-
ps.allowed_errors.extend(
320-
[
321-
".*could not find data for key.*",
322-
".*could not ingest record.*",
323-
]
324-
)
325-
326315

327316
def test_scrubber_physical_gc_timeline_deletion(neon_env_builder: NeonEnvBuilder):
328317
"""

0 commit comments

Comments
 (0)