1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[aws] Remove unused variable in ec2_asg module (#41706)

This commit is contained in:
Ryan Brown 2018-06-19 16:23:41 -04:00 committed by Sloane Hertel
parent 89f169127b
commit 22f1b71be0

View file

@ -1355,7 +1355,6 @@ def wait_for_term_inst(connection, term_instances):
wait_timeout = module.params.get('wait_timeout')
group_name = module.params.get('name')
as_group = describe_autoscaling_groups(connection, group_name)[0]
props = get_properties(as_group)
count = 1
wait_timeout = time.time() + wait_timeout
while wait_timeout > time.time() and count > 0: