EdColeman commented on code in PR #2569:
URL: https://github.com/apache/accumulo/pull/2569#discussion_r858069588


##########
server/manager/src/main/java/org/apache/accumulo/manager/Manager.java:
##########
@@ -274,6 +288,18 @@ synchronized void setManagerState(ManagerState newState) {
     }
   }
 
+  private void convertPropsToSingleNode() {
+    try {
+      log.info("Starting property conversion");
+      var context = getContext();
+      ConfigPropertyUpgrader configUpgrader = new ConfigPropertyUpgrader();
+      configUpgrader.doUpgrade(context.getInstanceID(), 
context.getZooReaderWriter());
+      log.info("Completed property conversion");
+    } catch (Exception ex) {
+      throw new IllegalStateException("Failed to convert properties to single 
node format", ex);
+    }
+  }
+

Review Comment:
   Removed in e8cbf539bd



-- 
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]

Reply via email to