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: