Skip to content

Commit

Permalink
Merge e64906a into 01c6402
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego committed Jan 16, 2020
2 parents 01c6402 + e64906a commit ee444c0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions reana_workflow_controller/workflow_run_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class WorkflowRunManager():
"--workflow-uuid {id} "
"--workflow-workspace {workspace} "
"--workflow-json '{workflow_json}' "
"--workflow-file '{workflow_file}' "
"--workflow-parameters '{parameters}' "
"--operational-options '{options}' "),
'environment_variables': WORKFLOW_ENGINE_COMMON_ENV_VARS},
Expand All @@ -72,6 +73,7 @@ class WorkflowRunManager():
"--workflow-uuid {id} "
"--workflow-workspace {workspace} "
"--workflow-json '{workflow_json}' "
"--workflow-file '{workflow_file}' "
"--workflow-parameters '{parameters}' "),
'environment_variables': WORKFLOW_ENGINE_COMMON_ENV_VARS},
'serial': {'image': '{}'.
Expand Down Expand Up @@ -153,6 +155,8 @@ def _workflow_engine_command(self):
workspace=self.workflow.get_workspace(),
workflow_json=base64.standard_b64encode(json.dumps(
self.workflow.get_specification()).encode()),
workflow_file=self.workflow.reana_specification.get(
'workflow').get('file'),
parameters=base64.standard_b64encode(json.dumps(
self._get_merged_workflow_parameters()).encode()),
options=base64.standard_b64encode(json.dumps(
Expand Down

0 comments on commit ee444c0

Please sign in to comment.