Use strings.Contains for error possibly coming from storage
They may not well errwrap Fixes #5046
This commit is contained in:
parent
3be8a737c1
commit
21cd0dd71a
|
@ -307,7 +307,7 @@ func (m *ExpirationManager) Restore(errorFunc func()) (retErr error) {
|
|||
|
||||
switch {
|
||||
case retErr == nil:
|
||||
case errwrap.Contains(retErr, context.Canceled.Error()):
|
||||
case strings.Contains(retErr.Error(), context.Canceled.Error()):
|
||||
// Don't run error func because we lost leadership
|
||||
m.logger.Warn("context cancled while restoring leases, stopping lease loading")
|
||||
retErr = nil
|
||||
|
|
Loading…
Reference in New Issue