Skip to content

Commit

Permalink
Merge branch 'main' into fix/skip-invalid-source_node_id-in-end-strea…
Browse files Browse the repository at this point in the history
…m-generator-router

Signed-off-by: -LAN- <[email protected]>
  • Loading branch information
laipz8200 committed Dec 23, 2024
2 parents 75d2a0e + 70dd69d commit eaba129
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ def _recursive_fetch_answer_dependencies(
reverse_edges = reverse_edge_mapping.get(current_node_id, [])
for edge in reverse_edges:
source_node_id = edge.source_node_id
if source_node_id not in node_id_config_mapping:
continue
source_node_type = node_id_config_mapping[source_node_id].get("data", {}).get("type")
source_node_data = node_id_config_mapping[source_node_id].get("data", {})
if (
Expand Down

0 comments on commit eaba129

Please sign in to comment.