Skip to content

Commit 6d0edef

Browse files
committed
rename function
1 parent 4d1ff73 commit 6d0edef

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

rust/stackable-cockpit/src/platform/manifests.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ pub trait InstallManifestsExt {
9999
ManifestSpec::HelmChart(helm_file) => {
100100
debug!(helm_file, "Installing manifest from Helm chart");
101101

102-
let helm_chart = get_helmchart(helm_file, transfer_client, &parameters).await?;
102+
let helm_chart =
103+
get_helm_chart(helm_file, transfer_client, &parameters).await?;
103104

104105
info!(helm_chart.name, helm_chart.version, "Installing Helm chart",);
105106

@@ -179,7 +180,7 @@ pub trait InstallManifestsExt {
179180
ManifestSpec::HelmChart(helm_file) => {
180181
debug!(helm_file, "Uninstalling manifest from Helm chart");
181182

182-
let helm_chart = get_helmchart(helm_file, transfer_client, parameters).await?;
183+
let helm_chart = get_helm_chart(helm_file, transfer_client, parameters).await?;
183184

184185
info!(
185186
helm_chart.name,
@@ -200,7 +201,7 @@ pub trait InstallManifestsExt {
200201
}
201202
}
202203

203-
pub async fn get_helmchart(
204+
pub async fn get_helm_chart(
204205
helm_file: &str,
205206
transfer_client: &xfer::Client,
206207
parameters: &HashMap<String, String>,

0 commit comments

Comments
 (0)