@xen-orchestra/backups 0.69.3 → 0.69.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -310,6 +310,7 @@ export const AbstractXapi = class AbstractXapiVmBackupRunner extends Abstract {
|
|
|
310
310
|
// if not => remove it from the list to ensure we won't half destroy VM later
|
|
311
311
|
vm.$VBDs
|
|
312
312
|
.filter(({ $VDI }) => !!$VDI) // filter missing keys
|
|
313
|
+
.filter(({ $VDI }) => $VDI.$snapshot_of !== undefined) // skip non-snapshot VDIs (e.g., ISOs/CD-ROMs)
|
|
313
314
|
.filter(({ $VDI }) => $VDI && vdiCandidates[$VDI.uuid] === undefined)
|
|
314
315
|
.forEach(({ $VDI: outOfSnapshotsVdi, ...other }) => {
|
|
315
316
|
warn(
|