修复解析chain节点属性errorResume、group错误

This commit is contained in:
zendwang
2021-04-06 15:45:24 +08:00
parent b2cfc58d2e
commit 888381bbe4

View File

@@ -107,8 +107,8 @@ public abstract class XmlFlowParser extends FlowParser{
for (Iterator<Element> it = e.elementIterator(); it.hasNext();) {
condE = it.next();
condArrayStr = condE.attributeValue("value");
errorResume = e.attributeValue("errorResume");
group = e.attributeValue("group");
errorResume = condE.attributeValue("errorResume");
group = condE.attributeValue("group");
if (StrUtil.isBlank(condArrayStr)) {
continue;
}