From 6caa1595a8f210dcc0b55a617b5327feb45a5e76 Mon Sep 17 00:00:00 2001 From: zxstty Date: Sun, 20 Apr 2025 22:54:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=81=E6=9B=B4=E6=96=B0=E6=97=B6=E5=80=99?= =?UTF-8?q?=E7=9A=84debug=E4=BF=AE=E6=94=B9=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/manager/flow.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/manager/flow.py b/apps/manager/flow.py index d67a556af..afb763a74 100644 --- a/apps/manager/flow.py +++ b/apps/manager/flow.py @@ -386,7 +386,7 @@ class FlowManager: edges=[], focus_point=flow_item.focus_point, connectivity=flow_item.connectivity, - debug=False, + debug=flow_item.debug, ) for node_item in flow_item.nodes: flow_config.steps[node_item.step_id] = Step( @@ -408,7 +408,6 @@ class FlowManager: edge_type=EdgeType(edge_item.type) if edge_item.type else EdgeType.NORMAL, ) flow_config.edges.append(edge_config) - flow_config.debug = False flow_loader = FlowLoader() old_flow_config = await flow_loader.load(app_id, flow_id) -- Gitee