From 0fdce1e0937da02106f40ad470833f3a0d975ab7 Mon Sep 17 00:00:00 2001 From: bryan31 Date: Mon, 29 Nov 2021 11:42:53 +0800 Subject: [PATCH] =?UTF-8?q?bug=20#I4K7L1=20=E5=BD=93=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E6=89=BE=E4=B8=8D=E5=88=B0=E6=97=B6=EF=BC=8C=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E6=89=93=E5=8D=B0=E5=87=BA=E5=85=B7=E4=BD=93=E7=9A=84node?= =?UTF-8?q?=E8=8A=82=E7=82=B9=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/yomahub/liteflow/parser/XmlFlowParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/parser/XmlFlowParser.java b/liteflow-core/src/main/java/com/yomahub/liteflow/parser/XmlFlowParser.java index c9be8a36c..038c2437b 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/parser/XmlFlowParser.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/parser/XmlFlowParser.java @@ -181,7 +181,7 @@ public abstract class XmlFlowParser extends FlowParser { Chain chain = FlowBus.getChain(item.getId()); chainNodeList.add(chain); } else { - String errorMsg = StrUtil.format("executable node[{}] is not found!", regexEntity.getItem()); + String errorMsg = StrUtil.format("executable node[{}] is not found!", regexEntity.getItem().getId()); throw new ExecutableItemNotFoundException(errorMsg); } }