mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-21 18:53:30 +00:00
Merge pull request #5303 from liubin/fix/5296-typo-unknow
kata-sys-util: fix typo `unknow`
This commit is contained in:
commit
0143036b84
@ -10,9 +10,9 @@ use kata_types::container::ContainerType;
|
|||||||
|
|
||||||
#[derive(thiserror::Error, Debug)]
|
#[derive(thiserror::Error, Debug)]
|
||||||
pub enum Error {
|
pub enum Error {
|
||||||
/// unknow container type
|
/// unknown container type
|
||||||
#[error("unknow container type {0}")]
|
#[error("unknown container type {0}")]
|
||||||
UnknowContainerType(String),
|
UnknownContainerType(String),
|
||||||
/// missing sandboxID
|
/// missing sandboxID
|
||||||
#[error("missing sandboxID")]
|
#[error("missing sandboxID")]
|
||||||
MissingSandboxID,
|
MissingSandboxID,
|
||||||
@ -56,7 +56,7 @@ pub fn get_contaier_type(spec: &oci::Spec) -> Result<ContainerType, Error> {
|
|||||||
"sandbox" => return Ok(ContainerType::PodSandbox),
|
"sandbox" => return Ok(ContainerType::PodSandbox),
|
||||||
"podsandbox" => return Ok(ContainerType::PodSandbox),
|
"podsandbox" => return Ok(ContainerType::PodSandbox),
|
||||||
"container" => return Ok(ContainerType::PodContainer),
|
"container" => return Ok(ContainerType::PodContainer),
|
||||||
_ => return Err(Error::UnknowContainerType(type_value.clone())),
|
_ => return Err(Error::UnknownContainerType(type_value.clone())),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user