diff --git a/pkg/cvo/sync_worker.go b/pkg/cvo/sync_worker.go index 7c2f3ef38..41f0a9969 100644 --- a/pkg/cvo/sync_worker.go +++ b/pkg/cvo/sync_worker.go @@ -1012,7 +1012,10 @@ func (w *SyncWorker) apply(ctx context.Context, work *SyncWork, maxWorkers int, // update the status cr.Complete() - return apierrors.NewAggregate(reportEffectErrors) + if len(reportEffectErrors) > 0 { + _ = cr.Errors(reportEffectErrors) + } + return nil } var (