Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernauer committed Aug 2, 2023
1 parent ec8333d commit b0c5696
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rust/operator-binary/src/druid_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1143,8 +1143,10 @@ mod test {
let druid: DruidCluster =
serde_yaml::with::singleton_map_recursive::deserialize(deserializer).unwrap();

let resolved_product_image: ResolvedProductImage =
druid.spec.image.resolve(DOCKER_IMAGE_BASE_NAME);
let resolved_product_image: ResolvedProductImage = druid
.spec
.image
.resolve(DOCKER_IMAGE_BASE_NAME, crate::built_info::CARGO_PKG_VERSION);
let role_config = transform_all_roles_to_config(&druid, druid.build_role_properties());

let product_config_manager =
Expand Down

0 comments on commit b0c5696

Please sign in to comment.