Skip to content

Commit

Permalink
the instanceId was wrongly used.
Browse files Browse the repository at this point in the history
  • Loading branch information
elkezza committed Aug 16, 2024
1 parent b3705c8 commit 6a472a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/instance_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func (c *instanceCreateCmd) cmdRun(_ *cobra.Command, _ []string) error { //nolin
if c.Protection {
var value egoscale3.UUID
var op *egoscale3.Operation
value, err = egoscale3.ParseUUID(*instance.ID)
value, err = egoscale3.ParseUUID(instanceID.String())
if err != nil {
return
}
Expand Down

0 comments on commit 6a472a0

Please sign in to comment.