fix(cache): remove the parameter values from cache for security

This commit is contained in:
Orhun Parmaksız 2021-12-03 16:53:43 +03:00
parent ab747cbd37
commit 6466152247
No known key found for this signature in database
GPG key ID: F83424824B3E4B90

View file

@ -82,6 +82,7 @@ pub struct Parameter {
/// Name of the kernel parameter.
pub name: String,
/// Value of the kernel parameter.
#[serde(skip)]
pub value: String,
/// Description of the kernel parameter
pub description: Option<String>,