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 d03f548 commit 1f2c919Copy full SHA for 1f2c919
rust/stackable-cockpit/src/platform/operator/mod.rs
@@ -194,7 +194,7 @@ impl OperatorSpec {
194
chart_source: &ChartSourceType,
195
) -> Result<(), helm::Error> {
196
info!(operator = %self, "Installing operator");
197
- Span::current().pb_set_message(format!("Installing {}-operator", self.name).as_str());
+ Span::current().pb_set_message(format!("Installing {name}-operator", name = self.name).as_str());
198
Span::current().pb_set_style(&ProgressStyle::with_template("{spinner} {msg}").expect("valid progress template"));
199
200
let version = self.version.as_ref().map(|v| v.to_string());
0 commit comments