From: Yuri Weinstein Date: Thu, 23 Jul 2026 19:32:51 +0000 (-0700) Subject: qa/tests: drop parens from all health-code ignorelist entries X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8b261cd505a059b08f4187dc4ceedbf972d986ca;p=ceph.git qa/tests: drop parens from all health-code ignorelist entries Monitor.cc logs a "Health check cleared: (was: ...)" line for any health check clearing mid-test, with the code bare (no parens) -- while the "Health check failed"/"Health check failed (unmute)" lines wrap the code in parens. Every \(CODE\) entry in this file therefore only matches the raise/failed form and misses the corresponding cleared form, the same gap just fixed for POOL_FULL. Drop the escaped parens from the remaining entries so each matches both log forms, consistent with the bare entries already present (OSD_ROOT_DOWN, MDS_INSUFFICIENT_STANDBY, POOL_FULL). Non-code entries (reached quota, overall HEALTH_, slow request, noscrub, nodeep-scrub, osds down, insufficient standby, etc.) are unchanged. 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 15c29c6d8a8..06f0226f185 100644 --- a/qa/overrides/upgrade_ignorelist_health.yaml +++ b/qa/overrides/upgrade_ignorelist_health.yaml @@ -1,21 +1,21 @@ overrides: ceph: log-ignorelist: - - \(MDS_ALL_DOWN\) - - \(MDS_UP_LESS_THAN_MAX\) - - \(OSD_SLOW_PING_TIME + - MDS_ALL_DOWN + - MDS_UP_LESS_THAN_MAX + - OSD_SLOW_PING_TIME - reached quota - overall HEALTH_ - - \(CACHE_POOL_NO_HIT_SET\) + - CACHE_POOL_NO_HIT_SET - POOL_FULL - - \(SMALLER_PGP_NUM\) - - \(SLOW_OPS\) - - \(CACHE_POOL_NEAR_FULL\) - - \(POOL_APP_NOT_ENABLED\) - - \(PG_AVAILABILITY\) - - \(OBJECT_MISPLACED\) + - SMALLER_PGP_NUM + - SLOW_OPS + - CACHE_POOL_NEAR_FULL + - POOL_APP_NOT_ENABLED + - PG_AVAILABILITY + - OBJECT_MISPLACED - slow request - - \(MON_DOWN\) + - MON_DOWN - noscrub - nodeep-scrub - OSD_ROOT_DOWN