未验证 提交 96a869d4 编写于 作者: X xingchun-chen 提交者: GitHub

Merge pull request #3506 from XiaotaoYi/1.3.2-release

[bug-3480][server]fix ds muti-level directory in zk, which lead to fail to assign work
......@@ -155,10 +155,10 @@ public class ZookeeperNodeManager implements InitializingBean {
private String parseGroup(String path){
String[] parts = path.split("\\/");
if(parts.length != 6){
if(parts.length < 6){
throw new IllegalArgumentException(String.format("worker group path : %s is not valid, ignore", path));
}
String group = parts[4];
String group = parts[parts.length - 2];
return group;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册