fix: exclude additional unreachable nodes (#16329)
This commit is contained in:
parent
3e84c77bbb
commit
437dcbdd68
2 changed files with 370 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ class StreamProcessor(ABC):
|
|||
# Issues: #13626
|
||||
if (
|
||||
finished_node_id in self.graph.node_parallel_mapping
|
||||
and edge.target_node_id not in self.graph.parallel_mapping
|
||||
and edge.target_node_id not in self.graph.node_parallel_mapping
|
||||
):
|
||||
continue
|
||||
unreachable_first_node_ids.append(edge.target_node_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue