@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(
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "type": "git",
9
9
  "url": "https://github.com/vatesfr/xen-orchestra.git"
10
10
  },
11
- "version": "0.69.3",
11
+ "version": "0.69.4",
12
12
  "engines": {
13
13
  "node": ">=14.18"
14
14
  },