From fc418269a7a714aae46922b36c60388a2d780fe1 Mon Sep 17 00:00:00 2001 From: zendwang Date: Wed, 24 Mar 2021 10:32:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/yomahub/liteflow/core/FlowExecutor.java | 2 +- .../src/main/java/com/yomahub/liteflow/flow/FlowBus.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/core/FlowExecutor.java b/liteflow-core/src/main/java/com/yomahub/liteflow/core/FlowExecutor.java index 68f1fa860..4a0828414 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/core/FlowExecutor.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/core/FlowExecutor.java @@ -147,7 +147,7 @@ public class FlowExecutor { } try { - //执行chain + // 执行chain chain.execute(slotIndex); } catch (Exception e) { LOG.error("[{}]:chain[{}] execute error on slot[{}]", slot.getRequestId(), chain.getChainName(), slotIndex); diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/flow/FlowBus.java b/liteflow-core/src/main/java/com/yomahub/liteflow/flow/FlowBus.java index c5a198313..b12076296 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/flow/FlowBus.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/flow/FlowBus.java @@ -24,7 +24,7 @@ public class FlowBus { private FlowBus() { } - public static Chain getChain(String id) throws Exception{ + public static Chain getChain(String id) throws Exception { if (MapUtils.isEmpty(chainMap)) { throw new Exception("please config the rule first"); }