From ab78cf29e4bd2a0cfebfe40da0508ac9c09a6ddd Mon Sep 17 00:00:00 2001 From: Samir Jha Date: Thu, 16 May 2024 10:27:53 -0400 Subject: [PATCH] Fixes #37479 - Add reindexing manifest metadata into katello to ContainerHandleImageMetadata command --- .../procedures/pulpcore/container_handle_image_metadata.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/definitions/procedures/pulpcore/container_handle_image_metadata.rb b/definitions/procedures/pulpcore/container_handle_image_metadata.rb index 108fcff93..05fa19b70 100644 --- a/definitions/procedures/pulpcore/container_handle_image_metadata.rb +++ b/definitions/procedures/pulpcore/container_handle_image_metadata.rb @@ -17,6 +17,9 @@ def run spinner.update('Adding image metadata to pulp. You can continue using the ' \ 'system normally while the task runs in the background.') execute!(pulpcore_manager('container-handle-image-data')) + spinner.update('Adding image metadata to katello. You can continue using the ' \ + 'system normally while the task runs in the background.') + execute!('foreman-rake katello:import_container_manifest_labels') end end end