mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-12 08:06:54 +00:00
fix(ecstore): surface multipart cleanup delete errors (#4198)
This commit is contained in:
@@ -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(())
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user