in src/main/java/com/googlesource/gerrit/plugins/validation/dfsrefdb/zookeeper/ZkSharedRefDatabase.java [99:105]
public boolean exists(Project.NameKey project, String refName) throws ZookeeperRuntimeException {
try {
return client.checkExists().forPath(pathFor(project, refName)) != null;
} catch (Exception e) {
throw new ZookeeperRuntimeException("Failed to check if path exists in Zookeeper", e);
}
}