meatballspaghetti commented on code in PR #5350:
URL: https://github.com/apache/accumulo/pull/5350#discussion_r1974315220
##########
server/compaction-coordinator/src/main/java/org/apache/accumulo/coordinator/CompactionCoordinator.java:
##########
@@ -750,7 +750,7 @@ private void deleteEmpty(ZooReaderWriter zoorw, String path)
}
private void cleanUpCompactors() {
- final String compactorQueuesPath = getContext().getZooKeeperRoot() +
Constants.ZCOMPACTORS;
+ final String compactorQueuesPath = Constants.ZCOMPACTORS;
Review Comment:
Fixed.
##########
server/manager/src/main/java/org/apache/accumulo/manager/tableOps/namespace/create/PopulateZookeeperWithNamespace.java:
##########
@@ -53,9 +53,8 @@ public Repo<Manager> call(long tid, Manager manager) throws
Exception {
Utils.getTableNameLock().lock();
try {
var context = manager.getContext();
- NamespaceMapping.put(context.getZooSession().asReaderWriter(),
- context.getZooKeeperRoot() + Constants.ZNAMESPACES,
namespaceInfo.namespaceId,
- namespaceInfo.namespaceName);
+ NamespaceMapping.put(context.getZooSession().asReaderWriter(),
Constants.ZNAMESPACES,
+ namespaceInfo.namespaceId, namespaceInfo.namespaceName);
Review Comment:
Fixed.
--
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]