EdColeman commented on code in PR #3137:
URL: https://github.com/apache/accumulo/pull/3137#discussion_r1057914921
##########
server/manager/src/main/java/org/apache/accumulo/manager/upgrade/UpgradeCoordinator.java:
##########
@@ -152,8 +155,13 @@ public synchronized void upgradeZookeeper(ServerContext
context,
abortIfFateTransactions(context);
for (int v = currentVersion; v < AccumuloDataVersion.get(); v++) {
- log.info("Upgrading Zookeeper from data version {}", v);
- upgraders.get(v).upgradeZookeeper(context);
+ log.info("Upgrading Zookeeper from data version {} target version
{}", v,
+ AccumuloDataVersion.get());
Review Comment:
Addressed with b3ca1d9b65
##########
server/base/src/main/java/org/apache/accumulo/server/AccumuloDataVersion.java:
##########
@@ -36,6 +36,11 @@
*/
public class AccumuloDataVersion {
+ /**
+ * version (11) reflects removal of replication starting with 3.0
+ */
+ public static final int REMOVE_REPLICATION = 11;
Review Comment:
Changed in b3ca1d9b65
--
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]