Skip to content

Commit 62dd0eb

Browse files
authored
fix: The output of the workflow sub node is not wrapped (#2088)
1 parent 83c5404 commit 62dd0eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/application/flow/workflow_manage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def hand_event_node_result(self, current_node, node_result_future):
487487
current_node.up_node_id_list,
488488
content, False, 0, 0,
489489
{'node_type': current_node.type,
490-
'runtime_node_id': current_node.runtime_node_id,
490+
'runtime_node_id': real_node_id,
491491
'view_type': view_type,
492492
'child_node': child_node,
493493
'node_is_end': node_is_end,
@@ -499,7 +499,7 @@ def hand_event_node_result(self, current_node, node_result_future):
499499
current_node.id,
500500
current_node.up_node_id_list,
501501
'', False, 0, 0, {'node_is_end': True,
502-
'runtime_node_id': current_node.runtime_node_id,
502+
'runtime_node_id': real_node_id,
503503
'node_type': current_node.type,
504504
'view_type': view_type,
505505
'child_node': child_node,

0 commit comments

Comments
 (0)