From 517882f93dde3b2234e2e50a9f61e761672b37e7 Mon Sep 17 00:00:00 2001 From: Yuting Nie Date: Wed, 1 Apr 2026 07:43:03 +0000 Subject: [PATCH] runtime-rs: Fix typo in share_fs error message There's a typo in the error message which gets prompted when an unsupported share_fs was configured. Fixed shred -> shared. Signed-off-by: Yuting Nie --- src/runtime-rs/crates/resource/src/share_fs/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime-rs/crates/resource/src/share_fs/mod.rs b/src/runtime-rs/crates/resource/src/share_fs/mod.rs index d42a33e459..98e81839b0 100644 --- a/src/runtime-rs/crates/resource/src/share_fs/mod.rs +++ b/src/runtime-rs/crates/resource/src/share_fs/mod.rs @@ -165,6 +165,6 @@ pub fn new(id: &str, config: &SharedFsInfo) -> Result> { 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)), } }