mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
lock: Fix missing formatting directives while printing. (#4147)
Current log prints in this form ``` ERRO[8150] Lock maintenance failed to remove entry for write lock (should never happen)%!!(MISSING)(EXTRA .... ``` Fix this by using proper formatting directive.
This commit is contained in:
parent
402a5e3bea
commit
640ebb2f79
@ -29,7 +29,7 @@ func (l *lockServer) removeEntryIfExists(nlrip nameLockRequesterInfoPair) {
|
||||
// Remove failed, in case it is a:
|
||||
if nlrip.lri.writer {
|
||||
// Writer: this should never happen as the whole (mapped) entry should have been deleted
|
||||
errorIf(errors.New(""), "Lock maintenance failed to remove entry for write lock (should never happen)", nlrip.name, nlrip.lri.uid, lri)
|
||||
errorIf(errors.New(""), "Lock maintenance failed to remove entry for write lock (should never happen) %#v %#v %#v", nlrip.name, nlrip.lri.uid, lri)
|
||||
} // Reader: this can happen if multiple read locks were active and
|
||||
// the one we are looking for has been released concurrently (so it is fine).
|
||||
} // Removal went okay, all is fine.
|
||||
|
Loading…
Reference in New Issue
Block a user