Skip to content

Commit 258df05

Browse files
authored
Merge pull request aws-samples#54 from t-yamo/feature/remove-spaces
bug fix for unnecessary space
2 parents 5180d69 + d1106e7 commit 258df05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

load-balancing/elb-v2/common_functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,10 @@ wait_for_state() {
316316
if [ $? != 0 ]; then
317317
error_exit "Failed re-setting waiter timeout for $target_group"
318318
fi
319-
local waiter_interval = $WAITER_INTERVAL_ALB
319+
local waiter_interval=$WAITER_INTERVAL_ALB
320320
elif [ "$service" == "autoscaling" ]; then
321321
instance_state_cmd="get_instance_state_asg $instance_id"
322-
local waiter_interval = $WAITER_INTERVAL_ASG
322+
local waiter_interval=$WAITER_INTERVAL_ASG
323323
else
324324
msg "Cannot wait for instance state; unknown service type, '$service'"
325325
return 1

0 commit comments

Comments
 (0)