fix: iteration node log time error (#13511)

This commit is contained in:
Novice 2025-02-11 16:35:21 +08:00 committed by GitHub
parent c00e7d3f65
commit f96b4f287a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -842,4 +842,4 @@ class WorkflowCycleManage:
if node_execution_id not in self._workflow_node_executions:
raise ValueError(f"Workflow node execution not found: {node_execution_id}")
cached_workflow_node_execution = self._workflow_node_executions[node_execution_id]
return cached_workflow_node_execution
return session.merge(cached_workflow_node_execution)