Skip to content

Commit 8c6d73b

Browse files
committed
fix: After the workflow form collection node is recalled, the subsequent nodes will not execute
1 parent 041cf09 commit 8c6d73b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/application/flow/workflow_manage.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import json
1111
import threading
1212
import traceback
13-
import uuid
1413
from concurrent.futures import ThreadPoolExecutor
1514
from functools import reduce
1615
from typing import List, Dict
@@ -25,7 +24,6 @@
2524
from rest_framework.exceptions import ErrorDetail, ValidationError
2625

2726
from application.flow import tools
28-
from application.flow.common import Answer
2927
from application.flow.i_step_node import INode, WorkFlowPostHandler, NodeResult
3028
from application.flow.step_node import get_node
3129
from common.exception.app_exception import AppApiException
@@ -312,6 +310,7 @@ def get_node_params(n):
312310
node = self.get_node_cls_by_id(node_id, node_details.get('up_node_id_list'))
313311
node.valid_args(node.node_params, node.workflow_params)
314312
node.save_context(node_details, self)
313+
node.node_chunk.end()
315314
self.node_context.append(node)
316315

317316
def run(self):

0 commit comments

Comments
 (0)