fixed #1433
This commit is contained in:
@@ -508,6 +508,7 @@ public class CanalController {
|
||||
zkclientx.close();
|
||||
}
|
||||
|
||||
//关闭时清理缓存
|
||||
if (instanceConfigs != null) {
|
||||
instanceConfigs.clear();
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ public class ZooKeeperMetaManager extends AbstractCanalLifeCycle implements Cana
|
||||
}
|
||||
|
||||
public void stop() {
|
||||
zkClientx = null;
|
||||
zkClientx = null; //关闭时置空
|
||||
super.stop();
|
||||
}
|
||||
|
||||
@@ -102,7 +102,7 @@ public class ZooKeeperMetaManager extends AbstractCanalLifeCycle implements Cana
|
||||
}
|
||||
|
||||
public List<ClientIdentity> listAllSubscribeInfo(String destination) throws CanalMetaManagerException {
|
||||
if (zkClientx == null) {
|
||||
if (zkClientx == null) { //重新加载时可能为空
|
||||
return new ArrayList<ClientIdentity>();
|
||||
}
|
||||
String path = ZookeeperPathUtils.getDestinationPath(destination);
|
||||
|
||||
Reference in New Issue
Block a user