From 830c51970492855298540289e66d67d985d2a797 Mon Sep 17 00:00:00 2001 From: Nathan Freeman Date: Mon, 6 Nov 2023 17:13:47 -0600 Subject: [PATCH] fix task output --- src/engine/src/core/workflows/executors/WorkflowExecutor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/src/core/workflows/executors/WorkflowExecutor.py b/src/engine/src/core/workflows/executors/WorkflowExecutor.py index 2f03f1db..ef84ebe4 100644 --- a/src/engine/src/core/workflows/executors/WorkflowExecutor.py +++ b/src/engine/src/core/workflows/executors/WorkflowExecutor.py @@ -292,7 +292,7 @@ def _start_task(self, task): self.state.ctx.output = { **self.state.ctx.output, - **{task.id: task_result.output} + **task_result.output } else: task_result = TaskResult(0, output={task.id: None})