fix(backups/_copyDelta): dont pass extra params to watchStreamSize

Introduced by 9b1fbf0fb
This commit is contained in:
Julien Fontanet
2021-04-12 23:42:29 +02:00
parent 39c2fbe8c3
commit b944364d1e

View File

@@ -155,7 +155,7 @@ exports.VmBackup = class VmBackup {
const deltaExport = await exportDeltaVm(exportedVm, baseVm, {
fullVdisRequired,
})
const sizeContainers = mapValues(deltaExport.streams, watchStreamSize)
const sizeContainers = mapValues(deltaExport.streams, stream => watchStreamSize(stream))
const timestamp = Date.now()