1
0
mirror of https://github.com/kata-containers/kata-containers.git synced 2025-08-21 17:34:31 +00:00

mount: fix the issue of epthemeral storage handler

For ephemeral storage handler, it should return an
empty string instead of the mount destination.

Fixes: 

Signed-off-by: fupan.lfp <fupan.lfp@antfin.com>
This commit is contained in:
fupan.lfp 2020-08-30 15:47:40 +08:00
parent fd8f3ee951
commit 544219d9ad

View File

@ -256,7 +256,9 @@ fn ephemeral_storage_handler(
return Err(err.into()); return Err(err.into());
} }
common_storage_handler(logger, storage) common_storage_handler(logger, storage)?;
Ok("".to_string())
} }
fn local_storage_handler( fn local_storage_handler(