bug fix
This commit is contained in:
parent
2e44de363c
commit
8f995cb993
|
|
@ -148,7 +148,7 @@ public abstract class ListenableStateRouter<T> extends AbstractStateRouter<T> im
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (AbstractStateRouter<T> router : conditionRouters) {
|
for (AbstractStateRouter<T> router : conditionRouters) {
|
||||||
routeResult = router.route(invokers, url, invocation, needToPrintMessage, nodeHolder);
|
routeResult = router.route(routeResult, url, invocation, needToPrintMessage, nodeHolder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,8 @@ public class ConditionRuleParser {
|
||||||
"Invalid condition config version number.",
|
"Invalid condition config version number.",
|
||||||
"",
|
"",
|
||||||
"Ignore this configuration. Only " + RULE_VERSION_V31 + " and below are supported in this release");
|
"Ignore this configuration. Only " + RULE_VERSION_V31 + " and below are supported in this release");
|
||||||
rule = ConditionRouterRule.parseFromMap(map);
|
// rule = ConditionRouterRule.parseFromMap(map);
|
||||||
|
rule = new ConditionRouterRule();
|
||||||
rule.setValid(false);
|
rule.setValid(false);
|
||||||
} else {
|
} else {
|
||||||
// for under v3.1
|
// for under v3.1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue