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

Make sure ingestion runs for exec block science product types as well

parent 1542a87a
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 #10766 failed
......@@ -100,6 +100,7 @@ class IngestionManifest(ManifestComponentIF):
ScienceProductType.EVLA_CAL,
ScienceProductType.IMAGE,
ScienceProductType.VLASS_SECI,
ScienceProductType.EXEC_BLOCK,
]:
raise NotImplementedError()
......@@ -215,6 +216,7 @@ class IngestionManifestBuilder:
ScienceProductType.EVLA_CAL,
ScienceProductType.IMAGE,
ScienceProductType.VLASS_SECI,
ScienceProductType.EXEC_BLOCK,
]:
raise NotImplementedError(f"Don't know yet how to build a {self.sp_type.value} manifest")
......
......@@ -72,7 +72,7 @@ class ObservationIngestionProductsFinder:
# is an SDM file present we know it's a different type of observation which
for file in self.files_found:
if file.name.endswith(XML):
self.logger.error("Non-GMVA/VLBI observation ingestion is not currently implemented!")
self.logger.error("Non-VLBA/GMVA observation ingestion is not currently implemented!")
sys.exit(1)
# Ingest all *fits files as 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