We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30975ad commit c69e5deCopy full SHA for c69e5de
crates/stackable-operator/src/commons/product_image_selection.rs
@@ -12,7 +12,7 @@ pub const STACKABLE_DOCKER_REPO: &str = "oci.stackable.tech/sdp";
12
#[derive(Debug, Snafu)]
13
pub enum Error {
14
#[snafu(display("could not parse or create label from app version {app_version:?}"))]
15
- AppVersionLabelParseFailed {
+ ParseAppVersionLabel {
16
source: LabelValueError,
17
app_version: String,
18
},
@@ -199,7 +199,7 @@ impl ProductImage {
199
200
formatted_app_version
201
.parse()
202
- .with_context(|_| AppVersionLabelParseFailedSnafu {
+ .with_context(|_| ParseAppVersionLabelSnafu {
203
app_version: formatted_app_version.to_string(),
204
})
205
}
0 commit comments