Skip to content

Commit

Permalink
fix(operator): change requeue interval
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Schuetz <[email protected]>
  • Loading branch information
Thomas Schuetz committed Oct 4, 2022
1 parent b3ee866 commit d22ceda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operator/controllers/keptnworkloadinstance/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func (r *KeptnWorkloadInstanceReconciler) Reconcile(ctx context.Context, req ctr
}
return ctrl.Result{Requeue: true}, nil
}
return ctrl.Result{Requeue: true, RequeueAfter: 5 * time.Second}, nil
return ctrl.Result{Requeue: true, RequeueAfter: 30 * time.Second}, nil

}

Expand Down

0 comments on commit d22ceda

Please sign in to comment.