From dab88500f774ed93d0f3eb08c89586c05e4a492b Mon Sep 17 00:00:00 2001 From: Stephan Eggermont Date: Sat, 29 Nov 2025 17:31:55 +0100 Subject: [PATCH] Typo cli.py --- eksrollup/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eksrollup/cli.py b/eksrollup/cli.py index 0a599b5..fd4644c 100755 --- a/eksrollup/cli.py +++ b/eksrollup/cli.py @@ -123,7 +123,7 @@ def scale_up_asg(cluster_name, asg, count): else: current_capacity = desired_capacity - # only change the max size if the new capacity is bigger than current max + # only change the max size if the new capacity is larger than current max if current_capacity > asg_old_max_size: scale_asg(asg_name, old_desired_capacity, current_capacity, current_capacity) else: