From 8be57bed2793c6e9bf0023589d5a47adddb8a63d Mon Sep 17 00:00:00 2001 From: DaleLee <1658850308@qq.com> Date: Mon, 7 Jul 2025 22:50:40 +0800 Subject: [PATCH] =?UTF-8?q?feature=20#IAY66T=E5=AE=8C=E5=96=84=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/yomahub/liteflow/flow/element/Chain.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/Chain.java b/liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/Chain.java index c3c5faa3d..509234352 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/Chain.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/Chain.java @@ -273,13 +273,12 @@ public class Chain implements Executable{ tempChain.setCompiled(false); LiteFlowChainELBuilder.buildUnCompileChain(tempChain); - List tempConditionList = tempChain.getConditionList(); // 移除临时chain FlowBus.removeChain(tempChainId); // 打印警告,可用于排查临时chain与已有chain重名(几乎不可能发生)而将已有chain覆盖的情况 LOG.warn("The conditionList of chain[{}] is empty, " + "temporarily using chain[{}] (now removed) to build it.", chainId, tempChainId); - return tempConditionList; + return tempChain.getConditionList(); } }