This commit is contained in:
Robert Kaussow 2024-04-29 10:33:28 +02:00
parent e34ea0d42b
commit feb5531d93
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ class Discovery:
try:
qemu_list = self._filter(self.client.get_all_vms(node))
container_list = self._filter(self.client.get_all_containers(node))
except Exception as e: # noqa
except Exception as e:
raise APIError(str(e)) from e
# Merge QEMU and Containers lists from this node
@ -192,7 +192,7 @@ class Discovery:
description = config["description"]
except KeyError:
description = None
except Exception as e: # noqa
except Exception as e:
raise APIError(str(e)) from e
try: