fix(backups/cleanVm): fix path of merge state

Introduced by ad149740b1
This commit is contained in:
Florent Beauchamp 2022-08-12 16:07:44 +02:00 committed by Julien Fontanet
parent d369593979
commit 512b96af24
2 changed files with 2 additions and 1 deletions

View File

@ -94,7 +94,7 @@ const listVhds = async (handler, vmDir, logWarn) => {
vhds.add(`${vdiDir}/${file}`)
} else {
try {
const mergeState = JSON.parse(await handler.readFile(file))
const mergeState = JSON.parse(await handler.readFile(`${vdiDir}/${file}`))
interruptedVhds.set(`${vdiDir}/${res[1]}`, {
statePath: `${vdiDir}/${file}`,
chain: mergeState.chain,

View File

@ -30,6 +30,7 @@
<!--packages-start-->
- @xen-orchestra/backups patch
- @xen-orchestra/fs major
- vhd-lib major
- xo-server minor