Skip to content

Commit 48693e8

Browse files
committed
removing err to provent perma-reconciliation
1 parent adf9f8e commit 48693e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/ext-proc/backend/pod_reconciler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func (c *PodReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.R
3737
if err := c.Get(ctx, req.NamespacedName, pod); err != nil {
3838
klog.Error(err, ": unable to get pod")
3939
c.Datastore.pods.Delete(pod)
40-
return ctrl.Result{}, err
40+
return ctrl.Result{}, nil
4141
}
4242

4343
c.updateDatastore(pod, inferencePool)

0 commit comments

Comments
 (0)