Skip to content

Commit

Permalink
fix: 修复节点串行执行,日志显示不全 (#1419)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaohuzhang1 authored Oct 21, 2024
1 parent b969318 commit cfbb741
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/application/flow/workflow_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -442,7 +443,7 @@ def get_runtime_details(self):
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):
Expand Down

0 comments on commit cfbb741

Please sign in to comment.