fix(ecstore): surface multipart cleanup delete errors (#4198)

This commit is contained in:
cxymds
2026-07-02 22:36:48 +08:00
committed by GitHub
parent 5404ab155b
commit f9cf4ff2bf
2 changed files with 15 additions and 0 deletions
+12
View File
@@ -54,6 +54,18 @@ impl SetDisks {
}
}
let failed = errors.iter().filter(|err| err.is_some()).count();
if failed > 0 {
debug!(
bucket = %bucket,
prefix = %prefix,
failed,
total = errors.len(),
errors = ?errors,
"delete_all completed with disk errors"
);
}
Ok(())
}
}