Skip to content

Commit

Permalink
fix: config params breakage
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Johnson <[email protected]>
  • Loading branch information
tenthirtyam authored and lbajolet-hashicorp committed Oct 17, 2024
1 parent 0999fd7 commit 9c23c62
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions builder/vsphere/driver/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -1334,10 +1334,9 @@ func (vm *VirtualMachineDriver) AddConfigParams(params map[string]string, info *
log.Printf("[INFO] Ignored the following parameters: [%s]", strings.Join(ignoredParams, " , "))
log.Printf("[INFO] Some configuration keys were ignored due to conflicts with other fields in the ConfigSpec. Refer to VirtualMachineConfigSpec in the vSphere API documentation.")
}
return nil
}

return fmt.Errorf("no changes to apply")
return nil
}

func (vm *VirtualMachineDriver) AddFlag(ctx context.Context, flagSpec *types.VirtualMachineFlagInfo) error {
Expand Down

0 comments on commit 9c23c62

Please sign in to comment.