mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
do not print object not found errors in MRF healing (#15646)
This commit is contained in:
@@ -229,8 +229,10 @@ func (m *mrfState) healRoutine() {
|
||||
delete(m.pendingOps, u)
|
||||
m.mu.Unlock()
|
||||
|
||||
// Log healing error if any
|
||||
logger.LogIf(m.ctx, err)
|
||||
if !isErrObjectNotFound(err) && !isErrVersionNotFound(err) {
|
||||
// Log healing error if any
|
||||
logger.LogIf(m.ctx, err)
|
||||
}
|
||||
}
|
||||
|
||||
waitForLowHTTPReq()
|
||||
|
||||
Reference in New Issue
Block a user