mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: 修复节点串行执行,日志显示不全 (#1419)
This commit is contained in:
parent
b96931873c
commit
cfbb7417ee
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue