Merge pull request #12762 from YutingNie/fix-runtime-rs-shared-fs-typo

runtime-rs: Fix typo in share_fs error message
This commit is contained in:
RuoqingHe
2026-04-03 15:24:33 +08:00
committed by GitHub

View File

@@ -165,6 +165,6 @@ pub fn new(id: &str, config: &SharedFsInfo) -> Result<Arc<dyn ShareFs>> {
VIRTIO_FS => Ok(Arc::new(
ShareVirtioFsStandalone::new(id, config).context("new standalone virtio fs")?,
)),
_ => Err(anyhow!("unsupported shred fs {:?}", &shared_fs)),
_ => Err(anyhow!("unsupported shared fs {:?}", &shared_fs)),
}
}