From eaacd435448d7ee09ae37cee13454daaa8f46cdd Mon Sep 17 00:00:00 2001 From: Yongtao Huang Date: Wed, 23 Jul 2025 16:53:30 +0800 Subject: [PATCH] Post fix --- api/core/workflow/graph_engine/entities/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/workflow/graph_engine/entities/graph.py b/api/core/workflow/graph_engine/entities/graph.py index c8304d158f..d0dffc7f21 100644 --- a/api/core/workflow/graph_engine/entities/graph.py +++ b/api/core/workflow/graph_engine/entities/graph.py @@ -640,7 +640,7 @@ class Graph(BaseModel): return False parallel_start_node_ids: dict[str, list[str]] = {} - for branch_node_id in routes_node_ids.items(): + for branch_node_id in routes_node_ids: if branch_node_id in reverse_edge_mapping: for graph_edge in reverse_edge_mapping[branch_node_id]: if graph_edge.source_node_id not in parallel_start_node_ids: