Skip to content
Snippets Groups Projects
Commit 5d2ea6c9 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

make full curation manifests use a string type for product group ids

parent 76a1a7fe
No related branches found
No related tags found
2 merge requests!1669Catchup with main,!1645make full curation manifests builder enforce string type for product group ids
Pipeline #15361 failed
......@@ -463,7 +463,8 @@ class IngestionManifestBuilder:
:return:
"""
return ReingestGroup(
locator=self.product_group if self.product_group else self.locator,
# make type consistent for later validation
locator=str(self.product_group) if self.product_group else self.locator,
product_type=self.sp_type,
targets=self.target_list,
# product_group=self.product_group,
......
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