From 24918c8a0a3d22310e8fbf302dd05b4c60402bff Mon Sep 17 00:00:00 2001 From: odubajDT Date: Tue, 4 Oct 2022 12:59:14 +0200 Subject: [PATCH] do not requeue if everything is finished Signed-off-by: odubajDT --- operator/controllers/keptnworkloadinstance/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operator/controllers/keptnworkloadinstance/controller.go b/operator/controllers/keptnworkloadinstance/controller.go index e68b524ad9..3ef8e26504 100644 --- a/operator/controllers/keptnworkloadinstance/controller.go +++ b/operator/controllers/keptnworkloadinstance/controller.go @@ -118,8 +118,8 @@ func (r *KeptnWorkloadInstanceReconciler) Reconcile(ctx context.Context, req ctr } return ctrl.Result{Requeue: true}, nil } - return ctrl.Result{Requeue: true, RequeueAfter: 30 * time.Second}, nil + return ctrl.Result{}, nil } // SetupWithManager sets up the controller with the Manager.