diff --git a/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/std_img_manifest_utils.py b/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/std_img_manifest_utils.py index 134aa21a3b624b9e6b2e952929b03b146d8166b0..e0db790ca765220a0b0509a698ed14c16e61a517 100644 --- a/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/std_img_manifest_utils.py +++ b/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/std_img_manifest_utils.py @@ -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):