Skip to content
Snippets Groups Projects
Commit 669bb5e8 authored by Daniel Nemergut's avatar Daniel Nemergut
Browse files

IngestionManifest wanted a Path or None but curation_source was a str so it...

IngestionManifest wanted a Path or None but curation_source was a str so it somehow thought it had a staging_source_dir
parent 4bffd70a
No related branches found
No related tags found
2 merge requests!1605Merge 2.8.2.3 work to main,!1501Curator ingest_envoy fix
Pipeline #12483 passed
......@@ -282,7 +282,7 @@ class IngestionManifestBuilder:
raise NotImplementedError(
f"Don't know how to build a {self.curation_type.value} curation {self.sp_type} manifest"
)
self.curation_source = curate[1]
self.curation_source = Path(curate[1]) if curate and curate[1] else None
self.target_list = curate[2]
if locator is not None:
......
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