runtime: fixing merge conflicts

Signed-off-by: Georgina Kinge <georgina.kinge@ibm.com>
This commit is contained in:
Georgina Kinge 2023-01-09 14:22:32 +00:00
parent e8c63ccc4d
commit 73532eb400
2 changed files with 2 additions and 2 deletions

View File

@ -196,7 +196,7 @@ impl ShareFsMount for VirtiofsShareMount {
async fn umount_volume(&self, file_name: &str) -> Result<()> {
let host_dest = do_get_host_path(file_name, &self.id, "", true, false);
umount_timeout(host_dest, 0).context("umount volume")?;
umount_timeout(&host_dest, 0).context("umount volume")?;
// Umount event will be propagated to ro directory
// Remove the directory of mointpoint

View File

@ -51,7 +51,7 @@ const (
// RemoteHypervisor is the Remote hypervisor.
RemoteHypervisor HypervisorType = "remote"
// VirtFrameworkHypervisor is the Darwin Virtualization.framework hypervisor
VirtframeworkHypervisor HypervisorType = "virtframework"