Skip to content

Commit deccabb

Browse files
authored
Deleting a velero resource will take down the controller thread (#455)
1 parent 3c5be03 commit deccabb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/velero_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func (r *VeleroReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctr
7878

7979
if err := r.Get(ctx, req.NamespacedName, &velero); err != nil {
8080
log.Error(err, "unable to fetch velero CR")
81-
return result, client.IgnoreNotFound(err)
81+
return result, nil
8282
}
8383

8484
_, err := ReconcileBatch(r.Log,

0 commit comments

Comments
 (0)