pageserver: allow flush task cancelled error in sharding autosplit test (#12374)

## Problem

Test is failing due to compaction shutdown noise (see
https://github.com/neondatabase/neon/issues/12162).

## Summary of changes

Allow list the noise.
This commit is contained in:
Vlad Lazar
2025-06-27 14:13:11 +01:00
committed by GitHub
parent ebb6e26a64
commit cc1664ef93

View File

@@ -62,7 +62,8 @@ def test_sharding_autosplit(neon_env_builder: NeonEnvBuilder, pg_bin: PgBin):
ps.allowed_errors.extend(
[
# We shut down pageservers while they might have some compaction work going on
".*Compaction failed.*shutting down.*"
".*Compaction failed.*shutting down.*",
".*flush task cancelled.*",
]
)