jschmidt10 commented on a change in pull request #2086:
URL: https://github.com/apache/accumulo/pull/2086#discussion_r630094180



##########
File path: 
server/base/src/main/java/org/apache/accumulo/server/util/MetadataTableUtil.java
##########
@@ -144,27 +144,37 @@ private static void update(ServerContext context, 
Mutation m, KeyExtent extent)
   public static void update(ServerContext context, ServiceLock zooLock, 
Mutation m,
       KeyExtent extent) {
     Writer t = extent.isMeta() ? getRootTable(context) : 
getMetadataTable(context);
-    update(context, t, zooLock, m);
+    update(context, t, zooLock, m, extent);
   }
 
   public static void update(ServerContext context, Writer t, ServiceLock 
zooLock, Mutation m) {
+    update(context, t, zooLock, m, null);
+  }
+
+  public static void update(ServerContext context, Writer t, ServiceLock 
zooLock, Mutation m,
+      KeyExtent extent) {

Review comment:
       Cool. 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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to