Skip to content

Commit 30975ad

Browse files
Apply suggestions from code review
Co-authored-by: Sebastian Bernauer <[email protected]>
1 parent 8bfb046 commit 30975ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/stackable-operator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
77
### Fixed
88

99
- BREAKING: Fixed bug where `app_version_label` could not be used for metadata `Label` when using a hash in custom images.
10-
The `product_image_selection::resolve` now returns a `Result<ResolvedProductImage,Error>` instead of a `ResolvedProductImage` ([#1076]).
10+
The `product_image_selection::resolve` now returns a `Result<ResolvedProductImage, Error>` instead of a `ResolvedProductImage` ([#1076]).
1111

1212
[#1076]: https://github.com/stackabletech/operator-rs/pull/1076
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub const STACKABLE_DOCKER_REPO: &str = "oci.stackable.tech/sdp";
1111

1212
#[derive(Debug, Snafu)]
1313
pub enum Error {
14-
#[snafu(display("could not parse or create label from app version `{app_version}`"))]
14+
#[snafu(display("could not parse or create label from app version {app_version:?}"))]
1515
AppVersionLabelParseFailed {
1616
source: LabelValueError,
1717
app_version: String,

0 commit comments

Comments
 (0)