Skip to content

Commit

Permalink
fix: After the workflow form collection node is recalled, the subsequ…
Browse files Browse the repository at this point in the history
…ent nodes will not execute (#2195)
  • Loading branch information
shaohuzhang1 authored Feb 10, 2025
1 parent 041cf09 commit be27e15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/application/flow/workflow_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import json
import threading
import traceback
import uuid
from concurrent.futures import ThreadPoolExecutor
from functools import reduce
from typing import List, Dict
Expand All @@ -25,7 +24,6 @@
from rest_framework.exceptions import ErrorDetail, ValidationError

from application.flow import tools
from application.flow.common import Answer
from application.flow.i_step_node import INode, WorkFlowPostHandler, NodeResult
from application.flow.step_node import get_node
from common.exception.app_exception import AppApiException
Expand Down Expand Up @@ -312,6 +310,7 @@ def get_node_params(n):
node = self.get_node_cls_by_id(node_id, node_details.get('up_node_id_list'))
node.valid_args(node.node_params, node.workflow_params)
node.save_context(node_details, self)
node.node_chunk.end()
self.node_context.append(node)

def run(self):
Expand Down

0 comments on commit be27e15

Please sign in to comment.