Skip to content

Commit

Permalink
Merge pull request #2473 from rikatz/fix-panic-on-reconciler
Browse files Browse the repository at this point in the history
🐛 Re-add return on vimmachine error
  • Loading branch information
k8s-ci-robot authored Oct 30, 2023
2 parents a4eef1b + 2f08e65 commit c23a946
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/services/vimmachine.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ func (v *VimMachineService) ReconcileNormal(ctx context.Context, machineCtx capv
vm, err := v.createOrPatchVSphereVM(ctx, vimMachineCtx, vsphereVM)
if err != nil {
log.Error(err, "error creating or patching VM")
return false, err
}

// Waits the VM's ready state.
Expand Down

0 comments on commit c23a946

Please sign in to comment.