Skip to content

Commit d4886ea

Browse files
committed
cleanup
1 parent d1ab01b commit d4886ea

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

rust/stackable-cockpit/src/platform/release/spec.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ impl ReleaseSpec {
9292
tokio::spawn(
9393
async move {
9494
Span::current().record("product_name", &product_name);
95+
info!("Installing {product_name}-operator");
9596

9697
// Create operator spec
9798
let operator =
@@ -103,6 +104,8 @@ impl ReleaseSpec {
103104
.install(&namespace, &chart_source)
104105
.context(HelmInstallSnafu)?;
105106

107+
info!("Installed {product_name}-operator");
108+
106109
Ok(())
107110
}
108111
.instrument(task_span),

rust/stackable-cockpit/src/utils/k8s/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use serde::Deserialize;
1414
use snafu::{OptionExt, ResultExt, Snafu};
1515
use stackable_operator::{commons::listener::Listener, kvp::Labels};
1616
use tokio::sync::RwLock;
17-
use tracing::{info};
17+
use tracing::info;
1818

1919
#[cfg(doc)]
2020
use crate::utils::k8s::ListParamsExt;

rust/stackablectl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ futures.workspace = true
3737
indicatif.workspace = true
3838
termion.workspace = true
3939
urlencoding.workspace = true
40-
libc.workspace = true
40+
libc.workspace = true

rust/stackablectl/src/cli/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ impl Cli {
172172

173173
#[instrument(skip_all)]
174174
pub async fn run(&self) -> Result<String, Error> {
175-
176175
// FIXME (Techassi): There might be a better way to handle this with
177176
// the match later in this function.
178177

0 commit comments

Comments
 (0)