Fail on unhandled exception in ec2_asg rather than raise
This commit is contained in:
parent
66f1f6d537
commit
0b95051039
1 changed files with 6 additions and 2 deletions
|
@ -336,8 +336,12 @@ def elb_healthy(asg_connection, elb_connection, module, group_name):
|
||||||
# but has not yet show up in the ELB
|
# but has not yet show up in the ELB
|
||||||
try:
|
try:
|
||||||
lb_instances = elb_connection.describe_instance_health(lb, instances=instances)
|
lb_instances = elb_connection.describe_instance_health(lb, instances=instances)
|
||||||
except boto.exception.InvalidInstance:
|
except boto.exception.BotoServerError as e:
|
||||||
pass
|
if e.error_code == 'InvalidInstance':
|
||||||
|
return None
|
||||||
|
|
||||||
|
module.fail_json(msg=str(e))
|
||||||
|
|
||||||
for i in lb_instances:
|
for i in lb_instances:
|
||||||
if i.state == "InService":
|
if i.state == "InService":
|
||||||
healthy_instances.append(i.instance_id)
|
healthy_instances.append(i.instance_id)
|
||||||
|
|
Loading…
Reference in a new issue