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 d2c13cd commit 079fd59Copy full SHA for 079fd59
2 files changed
src/deployment/k8sm8/mod.rs
@@ -161,7 +161,7 @@ pub async fn apply(
161
} else {
162
LOGGER.error(&format!(
163
"cannot apply object without valid TypeMeta {:?}",
164
- &obj
+ obj
165
));
166
LOGGER.error("please add apiVersion and kind to the object");
167
continue;
src/templates/mod.rs
@@ -215,10 +215,10 @@ impl TemplateManager {
215
.read_file(config_file, Some(&"./k8s/templates".to_string()))
216
.unwrap();
217
218
- acc.0.push_str(&format!("\n {:?}: |", &config));
+ acc.0.push_str(&format!("\n {:?}: |", config));
219
220
for line in config_content.lines() {
221
- acc.0.push_str(&format!("\n {}", &line))
+ acc.0.push_str(&format!("\n {}", line))
222
}
223
224
acc.1.push(config);
0 commit comments