From d741da35c82646e441a31d80ed717d1b43a3a97f Mon Sep 17 00:00:00 2001 From: Dave Marion Date: Mon, 16 Dec 2024 20:10:41 +0000 Subject: [PATCH] Add mini lock to list of valid paths --- .../org/apache/accumulo/core/fate/zookeeper/ZooCache.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/fate/zookeeper/ZooCache.java b/core/src/main/java/org/apache/accumulo/core/fate/zookeeper/ZooCache.java index 38c12439dcf..73c2172c305 100644 --- a/core/src/main/java/org/apache/accumulo/core/fate/zookeeper/ZooCache.java +++ b/core/src/main/java/org/apache/accumulo/core/fate/zookeeper/ZooCache.java @@ -61,9 +61,9 @@ public class ZooCache { private static final Logger log = LoggerFactory.getLogger(ZooCache.class); protected static final String[] ALLOWED_PATHS = new String[] {Constants.ZCOMPACTORS, - Constants.ZDEADTSERVERS, Constants.ZGC_LOCK, Constants.ZMANAGER_LOCK, Constants.ZMONITOR_LOCK, - Constants.ZNAMESPACES, Constants.ZRECOVERY, Constants.ZSSERVERS, Constants.ZTABLES, - Constants.ZTSERVERS, Constants.ZUSERS, RootTable.ZROOT_TABLET}; + Constants.ZDEADTSERVERS, Constants.ZGC_LOCK, Constants.ZMANAGER_LOCK, Constants.ZMINI_LOCK, + Constants.ZMONITOR_LOCK, Constants.ZNAMESPACES, Constants.ZRECOVERY, Constants.ZSSERVERS, + Constants.ZTABLES, Constants.ZTSERVERS, Constants.ZUSERS, RootTable.ZROOT_TABLET}; protected final TreeSet watchedPaths = new TreeSet<>(); // visible for tests