fix(xo-server/mergeVhd): use remote options

This commit is contained in:
Julien Fontanet
2018-11-05 14:21:40 +01:00
parent 986fec1cd3
commit 24b8c671fa

View File

@@ -16,9 +16,9 @@ export function mergeVhd (
childPath: string
) {
return mergeVhd_(
getHandler(parentRemote),
getHandler(parentRemote, config.remoteOptions),
parentPath,
getHandler(childRemote),
getHandler(childRemote, config.remoteOptions),
childPath
)
}