Print explicit error cause when no ELBs are found in AWS
This commit is contained in:
parent
17b4efba22
commit
53e6e8c936
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ def list_elb(connection, module):
|
||||||
try:
|
try:
|
||||||
all_elbs = connection.get_all_load_balancers(elb_names)
|
all_elbs = connection.get_all_load_balancers(elb_names)
|
||||||
except BotoServerError as e:
|
except BotoServerError as e:
|
||||||
module.fail_json(msg=get_error_message(e.args[2]))
|
module.fail_json(msg = "%s: %s" % (e.error_code, e.error_message))
|
||||||
|
|
||||||
elb_array = []
|
elb_array = []
|
||||||
for elb in all_elbs:
|
for elb in all_elbs:
|
||||||
|
|
Loading…
Add table
Reference in a new issue