We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 565a1c0 + 94841d1 commit d4f473aCopy full SHA for d4f473a
pkg/cmd/admin/migrate/migrator.go
@@ -485,7 +485,8 @@ func canRetry(err error) bool {
485
// All other errors are left in their natural state - they will not be retried unless
486
// they define a Temporary() method that returns true.
487
func DefaultRetriable(info *resource.Info, err error) error {
488
- if err == nil {
+ // tolerate the deletion of resources during migration
489
+ if err == nil || errors.IsNotFound(err) {
490
return nil
491
}
492
switch {
0 commit comments