From ca04f0b346c9f884829eb75379f65dff402ca806 Mon Sep 17 00:00:00 2001 From: Maximilian Hubert <64627729+gap-editor@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:30:37 +0100 Subject: [PATCH] typos exit-standby-all-chain-nodes.sh --- .github/scripts/exit-standby-all-chain-nodes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/exit-standby-all-chain-nodes.sh b/.github/scripts/exit-standby-all-chain-nodes.sh index 3fad2155..d55962df 100755 --- a/.github/scripts/exit-standby-all-chain-nodes.sh +++ b/.github/scripts/exit-standby-all-chain-nodes.sh @@ -10,7 +10,7 @@ do # Possible states: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-lifecycle.html case "$autoscaling_group_state" in Standby) - # exit standby to make the node elgible for reciving + # exit standby to make the node eligible for reciving # requests from the target groups for the public load balancer autoscaling_group_name=$(aws autoscaling describe-auto-scaling-instances --instance-ids "$chain_node_instance_id" | jq -r '[.AutoScalingInstances | .[].AutoScalingGroupName] | join(" ")') @@ -19,7 +19,7 @@ do --auto-scaling-group-name "$autoscaling_group_name" ;; *) - echo "instance ($chain_node_instance_id) not in an elgible state ($autoscaling_group_state) for exiting standby, skipping" + echo "instance ($chain_node_instance_id) not in an eligible state ($autoscaling_group_state) for exiting standby, skipping" ;; esac done