Skip to content

Commit 2a721d6

Browse files
committed
🐛 hotfix reque
modified: controllers/pod_controller_functions.go
1 parent 4a664e3 commit 2a721d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/pod_controller_functions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func (r *PodReconciler) UpdateKubeObject(pod client.Object, ctx context.Context)
4141
if apierrors.IsNotFound(err) {
4242
// The Pod has been deleted since we read it.
4343
// Requeue the Pod to try to reconciliate again.
44-
return ctrl.Result{Requeue: true}, nil
44+
return ctrl.Result{Requeue: false}, nil
4545
}
4646
log.Error(err, "unable to update pod")
4747
return ctrl.Result{}, err

0 commit comments

Comments
 (0)