Skip to content

Commit

Permalink
fix: issue #12068 by test is answer in the ids (#12105)
Browse files Browse the repository at this point in the history
Signed-off-by: yihong0618 <[email protected]>
  • Loading branch information
yihong0618 authored Dec 26, 2024
1 parent 84ac004 commit efdd54a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions api/core/workflow/nodes/answer/base_stream_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ def _remove_unreachable_nodes(self, event: NodeRunSucceededEvent | NodeRunExcept
# we remove the node maybe shortcut the answer node, so comment this code for now
# there is not effect on the answer node and the workflow, when we have a better solution
# we can open this code. Issues: #11542 #9560 #10638 #10564

# reachable_node_ids.extend(self._fetch_node_ids_in_reachable_branch(edge.target_node_id))
continue
ids = self._fetch_node_ids_in_reachable_branch(edge.target_node_id)
if "answer" in ids:
continue
else:
reachable_node_ids.extend(ids)
else:
unreachable_first_node_ids.append(edge.target_node_id)

Expand Down

0 comments on commit efdd54a

Please sign in to comment.