Skip to content

Commit 8eb16f7

Browse files
authored
Fix snapshot failure when catalogSourceNamespace does not contain OperatorGroup. (#3149)
Signed-off-by: Daniel Franz <[email protected]>
1 parent e6d8fb0 commit 8eb16f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/controller/operators/catalog/operator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ func NewOperator(ctx context.Context, kubeconfigPath string, clock utilclock.Clo
346346
subscription.WithAppendedReconcilers(subscription.ReconcilerFromLegacySyncHandler(op.syncSubscriptions, nil)),
347347
subscription.WithRegistryReconcilerFactory(op.reconciler),
348348
subscription.WithGlobalCatalogNamespace(op.namespace),
349-
subscription.WithSourceProvider(resolverSourceProvider),
349+
subscription.WithSourceProvider(op.sourceInvalidator),
350350
)
351351
if err != nil {
352352
return nil, err

0 commit comments

Comments
 (0)