added try/except around conn.get_all_dbinstances
This commit is contained in:
parent
d25622f17e
commit
898889d20e
1 changed files with 6 additions and 2 deletions
|
@ -463,8 +463,12 @@ def main():
|
||||||
if command == 'delete' and not wait:
|
if command == 'delete' and not wait:
|
||||||
module.exit_json(changed=True)
|
module.exit_json(changed=True)
|
||||||
|
|
||||||
instances = conn.get_all_dbinstances(instance_name)
|
try:
|
||||||
my_inst = instances[0]
|
instances = conn.get_all_dbinstances(instance_name)
|
||||||
|
my_inst = instances[0]
|
||||||
|
except boto.exception.BotoServerError, e:
|
||||||
|
module.fail_json(msg = e.error_message)
|
||||||
|
|
||||||
|
|
||||||
# Wait for the instance to be available if requested
|
# Wait for the instance to be available if requested
|
||||||
if wait:
|
if wait:
|
||||||
|
|
Loading…
Reference in a new issue