Apache9 commented on code in PR #4651:
URL: https://github.com/apache/hbase/pull/4651#discussion_r930608998


##########
hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java:
##########
@@ -1911,7 +1916,13 @@ public void split(final TableName tableName, final 
byte[] splitPoint) throws IOE
         continue;
       }
       // call out to master to do split now
-      splitRegionAsync(r, splitPoint);
+      try {
+        splitRegionAsync(r, splitPoint).get();

Review Comment:
   Should be the same with mergeRegions method.



-- 
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: issues-unsubscr...@hbase.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to