We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当新建一个chain 的时候,类似下面 LiteFlowChainELBuilder.createChain() .setChainId(ONE_CHAIN) .setEL(el.toEL()).build()
没有显示的设置nameSpace
会在FlowExecutor 类的 doExecuteWithRoute 方法,执行 List routeChainList = FlowBus.getChainMap().values().stream() .filter(chain -> chain.getNamespace().equals(finalNamespace)) .filter(chain -> chain.getRouteItem() != null).collect(Collectors.toList());
这段代码的时候报空指针
The text was updated successfully, but these errors were encountered:
2.12.4中已解决
Sorry, something went wrong.
No branches or pull requests
当新建一个chain 的时候,类似下面
LiteFlowChainELBuilder.createChain() .setChainId(ONE_CHAIN) .setEL(el.toEL()).build()
没有显示的设置nameSpace
会在FlowExecutor 类的 doExecuteWithRoute 方法,执行
List routeChainList = FlowBus.getChainMap().values().stream()
.filter(chain -> chain.getNamespace().equals(finalNamespace))
.filter(chain -> chain.getRouteItem() != null).collect(Collectors.toList());
这段代码的时候报空指针
The text was updated successfully, but these errors were encountered: