Fixed exception handling a little more
This commit is contained in:
parent
6691863466
commit
4c5164ef36
|
|
@ -152,7 +152,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
||||||
try:
|
try:
|
||||||
self.peers = self.client.ListPeers()
|
self.peers = self.client.ListPeers()
|
||||||
except ConnectionRefusedError|ConnectionError as e:
|
except ConnectionRefusedError|ConnectionError as e:
|
||||||
raise AnsibleError from e
|
raise AnsibleError(f"Could not retrieve the Netbird inventory: {e.message}")
|
||||||
|
|
||||||
def _filter_by_config(self):
|
def _filter_by_config(self):
|
||||||
"""Filter peers by user specified configuration."""
|
"""Filter peers by user specified configuration."""
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue