System.out.println(parentPath + " path exists and will be deleted");
zkClient.deleteRecursive(parentPath);
}
zkClient.createPersistent(parentPath);
final CountDownLatch signalReady = new CountDownLatch(1);
zkClient.subscribeChildChanges(parentPath, new IZkChildListener() {
@Override
public void handleChildChange(String arg0, List<String> arg1) throws Exception {
if (parentPath.equals(arg0)) {