Skip to content

Commit 3a31383

Browse files
Merge pull request #1085 from operator-framework/ecordell-fix-logs
Fix log message in resolver
2 parents 9a71fb1 + 1990379 commit 3a31383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/controller/registry/resolver/resolver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func (r *OperatorsV1alpha1Resolver) ResolveSteps(namespace string, sourceQuerier
9696
if op.Bundle() != nil {
9797
bundleSteps, err := NewStepResourceFromBundle(op.Bundle(), namespace, op.Replaces(), op.SourceInfo().Catalog.Name, op.SourceInfo().Catalog.Namespace)
9898
if err != nil {
99-
return nil, nil, fmt.Errorf("failed to turn bundle into steps")
99+
return nil, nil, fmt.Errorf("failed to turn bundle into steps: %s", err.Error())
100100
}
101101
for _, s := range bundleSteps {
102102
steps = append(steps, &v1alpha1.Step{

0 commit comments

Comments
 (0)