File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff 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) ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ use serde::Deserialize;
1414use snafu:: { OptionExt , ResultExt , Snafu } ;
1515use stackable_operator:: { commons:: listener:: Listener , kvp:: Labels } ;
1616use tokio:: sync:: RwLock ;
17- use tracing:: { info} ;
17+ use tracing:: info;
1818
1919#[ cfg( doc) ]
2020use crate :: utils:: k8s:: ListParamsExt ;
Original file line number Diff line number Diff line change @@ -37,4 +37,4 @@ futures.workspace = true
3737indicatif.workspace = true
3838termion.workspace = true
3939urlencoding.workspace = true
40- libc.workspace = true
40+ libc.workspace = true
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments