From dc371e25b094a48ecf47755f4211ca350ce5af81 Mon Sep 17 00:00:00 2001 From: shaohuzhang1 Date: Fri, 2 Aug 2024 14:02:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=94=AF=E6=8C=81=E8=8A=82=E7=82=B9?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E8=AE=BE=E7=BD=AE=E7=9B=B4=E6=8E=A5=E8=BE=93?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/application/flow/i_step_node.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/application/flow/i_step_node.py b/apps/application/flow/i_step_node.py index 251a8f437..e6b87f46c 100644 --- a/apps/application/flow/i_step_node.py +++ b/apps/application/flow/i_step_node.py @@ -33,6 +33,7 @@ def write_context(step_variable: Dict, global_variable: Dict, node, workflow): if global_variable is not None: for key in global_variable: workflow.context[key] = global_variable[key] + node.context['run_time'] = time.time() - node.context['start_time'] class WorkFlowPostHandler: