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

Merge branch 'fix-adding-empty-input-group' into '2.8.2-DEVELOPMENT'

I'm seeing empty input groups in the manifest still, trying a fix

See merge request !1423
parents e5fecffe 8628aa23
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1423I'm seeing empty input groups in the manifest still, trying a fix
Pipeline #11124 passed
......@@ -182,7 +182,7 @@ class IngestionManifest(ManifestComponentIF):
}
# Ingestion manifests with empty input groups can cause errors on ingest
if me_dict[IngestionManifestKey.INPUT_GROUP.value]:
if len(self.input_group.science_products) > 0:
to_return[IngestionManifestKey.INPUT_GROUP.value] = me_dict[
IngestionManifestKey.INPUT_GROUP.value
].to_json()
......
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