Skip to content

Commit

Permalink
fix: The output of the workflow sub node is not wrapped
Browse files Browse the repository at this point in the history
  • Loading branch information
shaohuzhang1 committed Jan 23, 2025
1 parent 2c4d1fa commit ba40029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/application/flow/workflow_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ def hand_event_node_result(self, current_node, node_result_future):
current_node.up_node_id_list,
content, False, 0, 0,
{'node_type': current_node.type,
'runtime_node_id': current_node.runtime_node_id,
'runtime_node_id': real_node_id,
'view_type': view_type,
'child_node': child_node,
'node_is_end': node_is_end,
Expand All @@ -499,7 +499,7 @@ def hand_event_node_result(self, current_node, node_result_future):
current_node.id,
current_node.up_node_id_list,
'', False, 0, 0, {'node_is_end': True,
'runtime_node_id': current_node.runtime_node_id,
'runtime_node_id': real_node_id,
'node_type': current_node.type,
'view_type': view_type,
'child_node': child_node,
Expand Down

0 comments on commit ba40029

Please sign in to comment.