Skip to content

Commit

Permalink
lowered error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Jul 6, 2021
1 parent 8e0a648 commit 4caa86f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/ignite/iginite.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ func (c *IgniteRuntime) CreateContainer(ctx context.Context, node *types.NodeCon

ociRef, err = meta.NewOCIImageRef(node.Image)
if err != nil {
return nil, fmt.Errorf("Failed to parse OCI image ref %q: %s", node.Image, err)
return nil, fmt.Errorf("failed to parse OCI image ref %q: %s", node.Image, err)
}
img, err := operations.FindOrImportImage(providers.Client, ociRef)
if err != nil {
return nil, fmt.Errorf("Failed to find OCI image ref %q: %s", ociRef, err)
return nil, fmt.Errorf("failed to find OCI image ref %q: %s", ociRef, err)
}
vm.SetImage(img)

Expand Down

0 comments on commit 4caa86f

Please sign in to comment.