We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9268f07 commit 1d57271Copy full SHA for 1d57271
crates/lib/src/status.rs
@@ -398,7 +398,7 @@ pub(crate) async fn composefs_deployment_status() -> Result<Host> {
398
.ok_or_else(|| anyhow::anyhow!("Failed to find composefs parameter in kernel cmdline"))?;
399
let booted_image_verity = composefs_arg
400
.value
401
- .and_then(|v| str::from_utf8(v).ok())
+ .and_then(|v| std::str::from_utf8(v).ok())
402
.ok_or_else(|| anyhow::anyhow!("Missing value for composefs"))?;
403
404
let sysroot = cap_std::fs::Dir::open_ambient_dir("/sysroot", cap_std::ambient_authority())
0 commit comments