File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
rust/stackable-cockpit/src/platform Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ impl OperatorSpec {
184184 // NOTE (@NickLarsenNZ): Option doesn't impl Display, so we need to call
185185 // display for the inner type if it exists. Otherwise we gte the Debug
186186 // impl for the whole Option.
187- version = self . version. as_ref( ) . map( |v| tracing:: field:: display( v ) ) ,
187+ version = self . version. as_ref( ) . map( tracing:: field:: display) ,
188188 ) ) ]
189189 pub fn install (
190190 & self ,
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ impl StackSpec {
156156 // NOTE (@NickLarsenNZ): Option doesn't impl Display, so we need to call
157157 // display for the inner type if it exists. Otherwise we gte the Debug
158158 // impl for the whole Option.
159- demo_name = install_parameters. demo_name. as_ref( ) . map( |v| tracing:: field:: display( v ) ) ,
159+ demo_name = install_parameters. demo_name. as_ref( ) . map( tracing:: field:: display) ,
160160 ) ) ]
161161 pub async fn install (
162162 & self ,
You can’t perform that action at this time.
0 commit comments