mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-09 13:41:56 +00:00
Use strings.Contains for error possibly coming from storage
They may not well errwrap Fixes #5046
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user