Skip to content

Commit c69e5de

Browse files
committed
rename error
1 parent 30975ad commit c69e5de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/stackable-operator/src/commons/product_image_selection.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pub const STACKABLE_DOCKER_REPO: &str = "oci.stackable.tech/sdp";
1212
#[derive(Debug, Snafu)]
1313
pub enum Error {
1414
#[snafu(display("could not parse or create label from app version {app_version:?}"))]
15-
AppVersionLabelParseFailed {
15+
ParseAppVersionLabel {
1616
source: LabelValueError,
1717
app_version: String,
1818
},
@@ -199,7 +199,7 @@ impl ProductImage {
199199

200200
formatted_app_version
201201
.parse()
202-
.with_context(|_| AppVersionLabelParseFailedSnafu {
202+
.with_context(|_| ParseAppVersionLabelSnafu {
203203
app_version: formatted_app_version.to_string(),
204204
})
205205
}

0 commit comments

Comments
 (0)