Skip to content

Commit

Permalink
Add mini lock to list of valid paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmarion committed Dec 16, 2024
1 parent 0867ea6 commit d741da3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> watchedPaths = new TreeSet<>();
// visible for tests
Expand Down

0 comments on commit d741da3

Please sign in to comment.