Skip to content

Commit d9774a7

Browse files
Merge pull request #1702 from benluddy/spurious-bundle-cardinality-error
Remove spurious check for duplicate operators in resolver.
2 parents 0984504 + e17bd79 commit d9774a7

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pkg/controller/registry/resolver/resolver.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -308,11 +308,6 @@ func (r *SatResolver) getBundleInstallables(catalog registry.CatalogKey, predica
308308
bundleDependencies := make([]solver.Identifier, 0)
309309
for _, dep := range sortedBundles {
310310
found := namespacedCache.Catalog(dep.SourceInfo().Catalog).Find(WithCSVName(dep.Identifier()))
311-
if len(found) > 1 {
312-
err := fmt.Errorf("found duplicate entries for %s in %s", bundle.Identifier(), dep.sourceInfo.Catalog)
313-
errs = append(errs, err)
314-
continue
315-
}
316311
if len(found) == 0 {
317312
err := fmt.Errorf("couldn't find %s in %s", bundle.Identifier(), dep.sourceInfo.Catalog)
318313
errs = append(errs, err)

0 commit comments

Comments
 (0)