Skip to content

Commit

Permalink
Merge pull request #480 from ricardomaraschini/move-on-to-next-image-…
Browse files Browse the repository at this point in the history
…on-failure

OCPBUGS-45861: move on to the next digest/tag during failures
  • Loading branch information
openshift-merge-bot[bot] authored Jan 20, 2025
2 parents 4eee01a + 27d3ca2 commit db4989b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/image/apiserver/importer/importer.go
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ func (imp *ImageStreamImporter) importRepositoryFromDocker(ctx context.Context,
"unable to import manifest list %q: %v",
ref.Exact(), err)
importDigest.Err = err
return
continue
}
importDigest.Manifests = images
}
Expand Down Expand Up @@ -906,7 +906,7 @@ func (imp *ImageStreamImporter) importRepositoryFromDocker(ctx context.Context,
"unable to import manifest list %q: %v",
ref.Exact(), err)
importTag.Err = err
return
continue
}
importTag.Manifests = images
}
Expand Down

0 comments on commit db4989b

Please sign in to comment.