Browse Source

fix: error in obtaining end_to_node_id during conditional parallel execution (#13673)

tags/1.0.0
Novice 8 months ago
parent
commit
f0b9257387
No account linked to committer's email address
1 changed files with 0 additions and 2 deletions
  1. 0
    2
      api/core/workflow/graph_engine/entities/graph.py

+ 0
- 2
api/core/workflow/graph_engine/entities/graph.py View File

@@ -590,8 +590,6 @@ class Graph(BaseModel):
start_node_id=node_id,
routes_node_ids=routes_node_ids,
)
# Exclude conditional branch nodes
and all(edge.run_condition is None for edge in reverse_edge_mapping.get(node_id, []))
):
if node_id not in merge_branch_node_ids:
merge_branch_node_ids[node_id] = []

Loading…
Cancel
Save