Files
Xen-Orchestra-xen-orchestra…/@xen-orchestra/xva/_formatBlockPath.mjs
Florent BEAUCHAMP 79abb97b1f fix(xva): last block path
the last block may be added by a different code path where the block counter wasn't padded, leading to trying to allocate a few Ettabytes
2024-02-06 15:00:08 +01:00

4 lines
161 B
JavaScript

const formatCounter = counter => String(counter).padStart(8, '0')
export const formatBlockPath = (basePath, counter) => `${basePath}/${formatCounter(counter)}`