mount: fix the issue of epthemeral storage handler

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

Fixes: #635

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());
}
common_storage_handler(logger, storage)
common_storage_handler(logger, storage)?;
Ok("".to_string())
}
fn local_storage_handler(