From: Yuri Weinstein Date: Fri, 10 Jul 2026 15:53:36 +0000 (-0700) Subject: qa/tests: fix POOL_FULL ignorelist pattern in upgrade tests X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c9ac93fdbbd5c8401e43cf297b43b8a85d2bd1bc;p=ceph.git qa/tests: fix POOL_FULL ignorelist pattern in upgrade tests \(POOL_FULL\) only matches the "Health check failed/update" cluster-log format (code wrapped in parens). It misses the "Health check cleared" format, where the code is not parenthesized (see src/mon/Monitor.cc), so a pool clearing its full state mid-upgrade-test was not ignorelisted. Drop the escaped parens so the pattern matches both forms, consistent with other bare entries already in this file (OSD_ROOT_DOWN, MDS_INSUFFICIENT_STANDBY). Fixes: https://tracker.ceph.com/issues/78149 Signed-off-by: Yuri Weinstein --- diff --git a/qa/overrides/upgrade_ignorelist_health.yaml b/qa/overrides/upgrade_ignorelist_health.yaml index 4cefcafc06c..15c29c6d8a8 100644 --- a/qa/overrides/upgrade_ignorelist_health.yaml +++ b/qa/overrides/upgrade_ignorelist_health.yaml @@ -7,7 +7,7 @@ overrides: - reached quota - overall HEALTH_ - \(CACHE_POOL_NO_HIT_SET\) - - \(POOL_FULL\) + - POOL_FULL - \(SMALLER_PGP_NUM\) - \(SLOW_OPS\) - \(CACHE_POOL_NEAR_FULL\)