fix(xo-server/backup NG): properly handle missing VHD in chain
Fixes #3875
This commit is contained in:
@@ -1340,7 +1340,10 @@ export default class BackupNg {
|
||||
|
||||
return
|
||||
} catch (error) {
|
||||
if (!(error instanceof AssertionError)) {
|
||||
if (
|
||||
!(error instanceof AssertionError) ||
|
||||
error?.code === 'ENOENT'
|
||||
) {
|
||||
throw error
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user