File tree Expand file tree Collapse file tree
rust/stackable-cockpit/src/platform Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ pub enum Error {
5757 } ,
5858
5959 /// This error indicates that the Helm chart source kind is not supported.
60- #[ snafu( display( "local Helm chart sources are not yet supported (url : {url })" ) ) ]
61- UnsupportedChartSource { url : String } ,
60+ #[ snafu( display( "local Helm chart sources are not yet supported (source : {chart_source:? })" ) ) ]
61+ UnsupportedChartSource { chart_source : String } ,
6262
6363 /// This error indicates that Helm chart options could not be serialized
6464 /// into YAML.
@@ -120,7 +120,7 @@ pub trait InstallManifestsExt {
120120 helm:: ChartSourceKind :: Oci => & helm_chart. repo . url ,
121121 helm:: ChartSourceKind :: Local => {
122122 return UnsupportedChartSourceSnafu {
123- url : helm_chart. repo . url . clone ( ) ,
123+ chart_source : helm_chart. repo . url . clone ( ) ,
124124 }
125125 . fail ( ) ;
126126 }
You can’t perform that action at this time.
0 commit comments