Skip to content
Snippets Groups Projects
Commit 18060763 authored by Nathan Bockisch's avatar Nathan Bockisch
Browse files

Clarify idifits over fits

parent 7de0020d
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1412WS-1571: Modify ingest_envoy to work with GMVA and VLBI observations
Pipeline #10769 failed
......@@ -33,6 +33,7 @@ from ingest_envoy.manifest_components import (
from ingest_envoy.utilities import AncillaryProductType, ScienceProductType
FITS = "fits"
IDIFITS = "idifits"
XML = "xml"
LOG = "log"
TEXT = "txt"
......@@ -76,7 +77,7 @@ class ObservationIngestionProductsFinder:
sys.exit(1)
# Ingest all *fits files as science products
fits_files = [file for file in self.files_found if file.name.endswith(FITS)]
fits_files = [file for file in self.files_found if file.name.endswith(IDIFITS)]
self.logger.info(f"Science Product(s) to ingest: {fits_files}")
science_products = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment