fix: 修复节点串行执行,日志显示不全 (#1419)

This commit is contained in:
shaohuzhang1 2024-10-21 18:16:00 +08:00 committed by GitHub
parent b96931873c
commit cfbb7417ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,6 +9,7 @@
import json
import threading
import traceback
import uuid
from concurrent.futures import ThreadPoolExecutor
from functools import reduce
from typing import List, Dict
@ -442,7 +443,7 @@ class WorkflowManage:
for index in range(len(self.node_context)):
node = self.node_context[index]
details = node.get_details(index)
details_result[node.id] = details
details_result[str(uuid.uuid1())] = details
return details_result
def get_next_node(self):