@Override
public void run() {
ConfigPath configRoot = configStore.getConfigRoot();
ConfigPath zkRoot = configRoot.child("zookeeper");
ZookeeperInstance zk = new ZookeeperInstance(zkRoot);
try {
zk.run();
} catch (Exception e) {
log.error("Error during ZK run; forcing exit", e);
System.exit(1);
}
}