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

Not reusing the previous execution's rawdata if the productfetcher hasn't finished

parent 8ac265ab
No related branches found
No related tags found
2 merge requests!1669Catchup with main,!1632Removing rawdata race conditions
Pipeline #15145 passed
......@@ -785,7 +785,10 @@ class RestrictedInfo(CapabilityInfo):
current_version_files = request.current_version.files
# Store the previous execution's spool directory for reusing bits of it
if request.current_version.workflow_metadata:
# Note: This is currently limited to capabilities that update the fetch stage
if (request.current_version.workflow_metadata
and request.current_version.workflow_metadata["processing_dir"]
and request.current_version.workflow_metadata["fetch_end_time"]):
parameters["prev_processing_dir"] = request.current_version.workflow_metadata["processing_dir"]
version = CapabilityVersion(
......
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