Description
PathChildrenCache has a static field:
private static final ChildData NULL_CHILD_DATA = new ChildData(null, null, null);
But this can't be created because of:
Caused by: java.lang.IllegalArgumentException: Path cannot be null
at org.apache.curator.utils.PathUtils.validatePath(PathUtils.java:48)
at org.apache.curator.framework.recipes.cache.ChildData.<init>(ChildData.java:34)
at org.apache.curator.framework.recipes.cache.PathChildrenCache.<clinit>(PathChildrenCache.java:90)
... 31 more