ddanielr commented on issue #3120: URL: https://github.com/apache/accumulo/issues/3120#issuecomment-1347201021
So is my understanding correct? `ZKUserPath` is scoped correctly and does not need to be modified. 1. Define a `/users` var in Constants called `ZKUSERS` for use in all ZKuser paths: https://github.com/apache/accumulo/blob/main/core/src/main/java/org/apache/accumulo/core/Constants.java 2. Find all instances of hardcoded `/users` path in use by any `ZKUser` operations and replace with new `ZKUSERS` Constant value. Intended fix should look like `ZKUserPath = Constants.ZROOT + "/" + context.getInstanceID() + Constants.ZUSERS;` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
