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

fixing mysteriously disappearing persistence changes.

AKA please don't give me heart failure again
parent 3a6927da
No related branches found
No related tags found
1 merge request!64fixing mysteriously disappearing persistence changes.
Pipeline #458 passed
......@@ -165,7 +165,7 @@ class PrepareAndRunWorkflow(CapabilityStep):
# DO NOT TAKE THIS OUT! Python will yell at you.
parameters = json.dumps(parameters)
workflow_args = json.loads(parameters)
engine.submit_workflow_request(workflow_name, workflow_args, files)
engine.submit_workflow_request(execution.id, workflow_name, workflow_args, files)
class AwaitQa(CapabilityStep):
......
......@@ -108,7 +108,7 @@ class CapabilityEngineIF(ABC):
@abstractmethod
def submit_workflow_request(
self, execution_id:int, workflow_name: str, workflow_args: dict, files: List[AbstractFile]
self, execution_id: int, workflow_name: str, workflow_args: dict, files: List[AbstractFile]
):
pass
......
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