Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pkg/operator/operatorhub/artifact_versiong.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ func (o *Operator) InstallArtifactVersion(ctx context.Context, version string) (

csv, found, _ := unstructured.NestedString(av.Object, "status", "version")
if !found || csv == "" {
return nil, fmt.Errorf("failed to get CSV version from artifact version %s: status.version field is empty or not found", av.GetName())
// return nil, fmt.Errorf("failed to get CSV version from artifact version %s: status.version field is empty or not found", av.GetName())
log.Infow("failed to get CSV version from artifact version %s: status.version field is empty or not found", av.GetName())
csv = fmt.Sprintf("%s.%s", o.name, version)
}

log.Infow("waiting for package manifest", "csv", csv)
Expand Down