Skip to content
Snippets Groups Projects

WS-601: addresses bug in additional_metadata section of image manifest

Merged Janet Goldstein requested to merge WS-601-fix-addl-metadata-section into main
All threads resolved!
1 file
+ 0
23
Compare changes
  • Side-by-side
  • Inline
@@ -87,29 +87,6 @@ class ImageIngestionProductsFinder:
),
]
# ancillary_products = []
# try:
# ancillary_products.append(
# AncillaryProduct(
# type=AncillaryProductType.PIPELINE_WEBLOG_TYPE, filename=WEBLOG_FILENAME
# )
# )
# except ValueError as exc:
# raise FileNotFoundError(f"No weblog found in {self.staging_source_dir}") from exc
#
# ancillary_files = [Path(ap.filename) for ap in ancillary_products]
#
# # find the pipeline artifacts tar
# pipeline_artifacts_tar = None
# for file in self.files_found:
# if file not in ancillary_files and self._is_ancillary_image_product(file):
# pipeline_artifacts_tar = file
# if pipeline_artifacts_tar:
# pip_ap = AncillaryProduct(
# type=AncillaryProductType.PIPELINE_ARTIFACTS, filename=pipeline_artifacts_tar.name
# )
# ancillary_products.append(pip_ap)
return ancillary_products
def _build_ancillary_image_science_product(self, file: Path):
Loading