mirror of
https://github.com/minio/minio.git
synced 2025-01-24 05:03:16 -05:00
safely ignore out of band deletions while decommissioning (#17473)
This commit is contained in:
parent
5a1612fe32
commit
15911c85f6
@ -757,6 +757,10 @@ func (z *erasureServerPools) decommissionPool(ctx context.Context, idx int, pool
|
||||
})
|
||||
var failure bool
|
||||
if err != nil {
|
||||
if isErrObjectNotFound(err) || isErrVersionNotFound(err) {
|
||||
// object deleted by the application, nothing to do here we move on.
|
||||
continue
|
||||
}
|
||||
logger.LogIf(ctx, err)
|
||||
failure = true
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user