Skip to content
Snippets Groups Projects
Commit aee7dceb authored by fmkiotheka's avatar fmkiotheka
Browse files

Allow failed nodes to exist

parent 80d95711
No related branches found
No related tags found
No related merge requests found
...@@ -105,7 +105,7 @@ class Proxmox: ...@@ -105,7 +105,7 @@ class Proxmox:
try: try:
node_vms = PX_API.nodes(node_name).qemu.get() node_vms = PX_API.nodes(node_name).qemu.get()
except Exception: except Exception:
raise APIError('Failed to connect to Proxmox Cluster!') continue
for vm_status in node_vms: for vm_status in node_vms:
# If the update runs as the VM is being cloned the vm_config will be # If the update runs as the VM is being cloned the vm_config will be
# messed up and our update will fail. # messed up and our update will fail.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment