Skip to content

Commit

Permalink
Merge pull request #38 from oshoval/adderr
Browse files Browse the repository at this point in the history
vmi controller: Add missing error handling
  • Loading branch information
kubevirt-bot authored Jul 8, 2024
2 parents 22d484d + a145a17 commit 067d00c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/vminetworkscontroller/vmi_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ func (r *VirtualMachineInstanceReconciler) Reconcile(
return controllerruntime.Result{}, fmt.Errorf("error removing the IPAMClaims finalizer: %w", err)
}
return controllerruntime.Result{}, nil
} else if err != nil {
return controllerruntime.Result{}, err
}

var ownerInfo metav1.OwnerReference
Expand Down

0 comments on commit 067d00c

Please sign in to comment.