wchevreuil commented on a change in pull request #307: HBase 22537
URL: https://github.com/apache/hbase/pull/307#discussion_r299465015
##########
File path:
hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncNonMetaRegionLocator.java
##########
@@ -390,6 +404,98 @@ public RegionLocations getRegionLocations(TableName
tableName, int replicaId, bo
});
}
+ @Test
+ public void testRegionReplicaRitRecovery() throws Exception {
+ int startRowNum = 11;
+ int rowCount = 60;
+
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ final ProcedureExecutor<MasterProcedureEnv> procExec =
getMasterProcedureExecutor();
+ TEST_UTIL.getAdmin().createTable(
+ TableDescriptorBuilder.newBuilder(tableName)
+
.setColumnFamily(ColumnFamilyDescriptorBuilder.of(FAMILY)).setRegionReplication(2)
+ .build());
+ TEST_UTIL.waitUntilAllRegionsAssigned(tableName);
+ RegionLocations locs = new Locator() {
Review comment:
Had removed it on the last commit.
----------------------------------------------------------------
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]
With regards,
Apache Git Services