Skip to content

Commit

Permalink
HBASE-22278 RawAsyncHBaseAdmin should not use cached region location
Browse files Browse the repository at this point in the history
  • Loading branch information
Apache9 committed Apr 21, 2019
1 parent 5618687 commit 8207886
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1289,7 +1289,7 @@ public CompletableFuture<Void> split(TableName tableName, byte[] splitPoint) {
if (splitPoint == null) {
return failedFuture(new IllegalArgumentException("splitPoint can not be null."));
}
addListener(connection.getRegionLocator(tableName).getRegionLocation(splitPoint),
addListener(connection.getRegionLocator(tableName).getRegionLocation(splitPoint, true),
(loc, err) -> {
if (err != null) {
result.completeExceptionally(err);
Expand Down

0 comments on commit 8207886

Please sign in to comment.