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

adding missing argument parameter

parent 7698be48
No related branches found
No related tags found
No related merge requests found
...@@ -474,7 +474,7 @@ class WorkflowServiceRESTClient(WorkflowServiceIF): ...@@ -474,7 +474,7 @@ class WorkflowServiceRESTClient(WorkflowServiceIF):
def execute(self, request: WorkflowRequestIF, files: List["AbstractFile"]): def execute(self, request: WorkflowRequestIF, files: List["AbstractFile"]):
# step 1: create the request # step 1: create the request
req = requests.post( req = requests.post(
f"{self.url}/workflows/{request.workflow_name}/requests/create" f"{self.url}/workflows/{request.workflow_name}/requests/create?args={request.argument}"
).json() ).json()
# step 2: if necessary, pass the files up for this request # step 2: if necessary, pass the files up for this request
......
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