From db1b424b57814e91f94bffdfb9fc280539ba4b0b Mon Sep 17 00:00:00 2001 From: "everywhere.z" Date: Sun, 28 Sep 2025 22:15:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DmultiSwitch=E7=9A=84=E5=BC=82?= =?UTF-8?q?=E6=AD=A5=E6=A8=A1=E5=BC=8F=E4=B8=AD=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yomahub/liteflow/flow/element/condition/SwitchCondition.java | 1 + 1 file changed, 1 insertion(+) diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/condition/SwitchCondition.java b/liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/condition/SwitchCondition.java index 05ded2445..07a90df37 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/condition/SwitchCondition.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/condition/SwitchCondition.java @@ -185,6 +185,7 @@ public class SwitchCondition extends AbstractParallelCondition { WhenCondition whenCondition = new WhenCondition(); matchedExecutors.forEach(whenCondition::addExecutable); whenCondition.setThreadExecutorClass(this.getThreadPoolExecutorClass()); + whenCondition.setCurrChainId(this.getCurrChainId()); whenCondition.executeCondition(slotIndex); } else { for (Executable targetExecutor : matchedExecutors) {