fix: 修复节点串行执行,日志显示不全 (#1419)
This commit is contained in:
parent
b96931873c
commit
cfbb7417ee
@ -9,6 +9,7 @@
|
|||||||
import json
|
import json
|
||||||
import threading
|
import threading
|
||||||
import traceback
|
import traceback
|
||||||
|
import uuid
|
||||||
from concurrent.futures import ThreadPoolExecutor
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
from functools import reduce
|
from functools import reduce
|
||||||
from typing import List, Dict
|
from typing import List, Dict
|
||||||
@ -442,7 +443,7 @@ class WorkflowManage:
|
|||||||
for index in range(len(self.node_context)):
|
for index in range(len(self.node_context)):
|
||||||
node = self.node_context[index]
|
node = self.node_context[index]
|
||||||
details = node.get_details(index)
|
details = node.get_details(index)
|
||||||
details_result[node.id] = details
|
details_result[str(uuid.uuid1())] = details
|
||||||
return details_result
|
return details_result
|
||||||
|
|
||||||
def get_next_node(self):
|
def get_next_node(self):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user