@xen-orchestra/backups 0.69.1 → 0.69.2

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.
@@ -213,7 +213,7 @@ export class MergeRemoteDisk {
213
213
 
214
214
  await this.#mergeBlocks(parentDisk, childDisk)
215
215
  await parentDisk.flushMetadata(childDisk)
216
- parentDisk.mergeMetadata(childDisk)
216
+ await parentDisk.mergeMetadata(childDisk)
217
217
  }
218
218
 
219
219
  /**
@@ -160,6 +160,7 @@ export class RemoteDisk extends RandomAccessDisk {
160
160
  /**
161
161
  * Abstract
162
162
  * @param {RemoteDisk} childDisk
163
+ * @returns {Promise<void>}
163
164
  */
164
165
  mergeMetadata(childDisk) {
165
166
  throw new Error(`mergeMetadata must be implemented`)
@@ -353,6 +353,7 @@ export class RemoteVhdDisk extends RemoteDisk {
353
353
 
354
354
  /**
355
355
  * @param {RemoteVhdDisk} childDisk
356
+ * @returns {Promise<void>}
356
357
  */
357
358
  async mergeMetadata(childDisk) {
358
359
  const childDiskMetadata = childDisk.getMetadata()
@@ -238,6 +238,7 @@ export class RemoteVhdDiskChain extends RemoteDisk {
238
238
 
239
239
  /**
240
240
  * @param {RemoteVhdDisk} childDisk
241
+ * @returns {Promise<void>}
241
242
  */
242
243
  mergeMetadata(childDisk) {
243
244
  throw new Error(`Can't merge metadata on a disk chain`)
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.1",
11
+ "version": "0.69.2",
12
12
  "engines": {
13
13
  "node": ">=14.18"
14
14
  },