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 0551078 commit 0a19ae6Copy full SHA for 0a19ae6
sources/bloodhound/src/bin/kubernetes-cis-checks/checks.rs
@@ -753,7 +753,7 @@ impl Checker for K8S04021400Checker {
753
result.status = CheckStatus::FAIL;
754
}
755
} else {
756
- result.error = format!("unable to read '{}'", KUBELET_CONF_FILE);
+ result.error = format!("unable to read '{KUBELET_CONF_FILE}'");
757
758
759
result
@@ -797,7 +797,7 @@ impl Checker for K8S04030100Checker {
797
result.status = CheckStatus::PASS;
798
799
800
- result.error = format!("unable to read '{}'", KUBEPROXY_CONF_FILE);
+ result.error = format!("unable to read '{KUBEPROXY_CONF_FILE}'");
801
802
803
0 commit comments