Present clearer messages for connection error

pull/4420/head
Hiroaki Nakamura 2016-05-12 23:27:53 +09:00 committed by Matt Clay
parent c538f4d7ca
commit ff985a03ae
1 changed files with 3 additions and 0 deletions

View File

@ -117,6 +117,7 @@ except ImportError:
else:
HAS_PYLXD = True
from requests.exceptions import ConnectionError
# LXD_ANSIBLE_STATES is a map of states that contain values of methods used
# when a particular state is evoked.
@ -200,6 +201,8 @@ class LxdContainerManagement(object):
return self.client.containers.get(self.container_name)
except NameError:
return None
except ConnectionError:
self.module.fail_json(msg="Cannot connect to lxd server")
@staticmethod
def _container_to_module_state(container):