Skip to content

Commit ce90c3f

Browse files
andrewrynhardtalos-bot
authored andcommitted
fix: remove requeue time
We don't have to wait to requeue. Signed-off-by: Andrew Rynhard <[email protected]>
1 parent 2d57f77 commit ce90c3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/taloscontrolplane_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ func (r *TalosControlPlaneReconciler) scaleDownControlPlane(ctx context.Context,
299299
}
300300

301301
// Requeue so that we handle any additional scaling.
302-
return ctrl.Result{Requeue: true, RequeueAfter: time.Minute}, nil
302+
return ctrl.Result{Requeue: true}, nil
303303
}
304304

305305
func (r *TalosControlPlaneReconciler) getControlPlaneMachinesForCluster(ctx context.Context, cluster client.ObjectKey, cpName string) ([]capiv1.Machine, error) {

0 commit comments

Comments
 (0)