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

helps if the parameter names match...

parent a4973db0
No related branches found
No related tags found
2 merge requests!1390Catch up with Main,!1310helps if the parameter names match...
Pipeline #9435 passed
......@@ -529,7 +529,7 @@ class WorkflowService(WorkflowServiceIF):
"ramInGb": self.processing_settings.ramInGb,
}
wf_request.argument = merged_args
wf_request.argument["fetcher_args"] = (
wf_request.argument["fetch_args"] = (
self.determine_multiple_productfetch(wf_request) if arg_list[0] == "--product" else None
)
return wf_definition.render_templates(wf_request.argument)
......@@ -1107,6 +1107,11 @@ class WorkflowMessageHandler:
if wf_request.workflow_name == "carta":
wf_key = "carta-instance-ready"
if event_type == "complete":
# carta exist by killing its processes which condor reads as an error.
# A 'normal' exit 0 for carta is actually a failure and the carta_complete message doesn't exist.
# fix message type
event_type = "failed"
else:
wf_key = wf_request.workflow_name
......
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