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


##########
core/src/main/java/org/apache/accumulo/core/metadata/schema/RootTabletMetadata.java:
##########
@@ -59,11 +60,14 @@ public class RootTabletMetadata {
   };
 
   // JSON Mapping Version 1. Released with Accumulo version 2.1.0
-  private static final int VERSION = 1;
+  private static final int VERSION_1 = 1;
+  // JSON Mapping Version 2. Released with Accumulo version 3,1
+  private static final int VERSION_2 = 2;
+  private static final int VERSION = VERSION_2;
 
   // This class is used to serialize and deserialize root tablet metadata 
using GSon. Any changes to
   // this class must consider persisted data.
-  private static class Data {
+  public static class Data {

Review Comment:
   Addressed in cc6b6e25801c



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