Fixes: https://tracker.ceph.com/issues/54481
Signed-off-by: Ernesto Puerta <epuertat@redhat.com>
it(PgCategory.CATEGORY_WORKING, () => {
testMethod('clean+scrubbing', PgCategory.CATEGORY_WORKING);
+ testMethod('active+clean+snaptrim_wait', PgCategory.CATEGORY_WORKING);
testMethod(
' 8 active+clean+scrubbing+deep, 255 active+clean ',
PgCategory.CATEGORY_WORKING
private getPgStatesFromText(pgStatesText: string) {
const pgStates = pgStatesText
- .replace(/[^a-z]+/g, ' ')
+ .replace(/[^a-z_]+/g, ' ')
.trim()
.split(' ');