fix: handle missing Proxmox VM config during cleanup
This commit is contained in:
@@ -130,6 +130,8 @@ jobs:
|
|||||||
except urllib.error.HTTPError as err:
|
except urllib.error.HTTPError as err:
|
||||||
if err.code == 404:
|
if err.code == 404:
|
||||||
return False
|
return False
|
||||||
|
if err.code == 500 and "conf' does not exist" in err.reason:
|
||||||
|
return False
|
||||||
raise
|
raise
|
||||||
|
|
||||||
for vmid in vm_ids:
|
for vmid in vm_ids:
|
||||||
|
|||||||
Reference in New Issue
Block a user