keith-turner commented on code in PR #5910:
URL: https://github.com/apache/accumulo/pull/5910#discussion_r2369238361
##########
server/manager/src/main/java/org/apache/accumulo/manager/upgrade/Upgrader11to12.java:
##########
@@ -929,7 +930,8 @@ void moveTableProperties(ServerContext context) {
sysTableProps.forEach((k, v) -> LOG.info("{} -> {}", k, v));
for (String ns : context.namespaceOperations().list()) {
- final NamespacePropKey nsk = NamespacePropKey.of(NamespaceId.of(ns));
+ final NamespaceId nsid = context.getNamespaceId(ns);
Review Comment:
The upgrade code is also changing how some things w/ tables and namespaces
are represented i n ZK. This code relies on those changes being done. Looked
at the order of things in the upgrade code and this move method does happen
after the ZK changes.
--
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]