HBASE-19391 Calling HRegion#initializeRegionInternals from a region replica can still re-create a region directory; ADDEDNDUM to fix TestRegionOpen failure
This commit is contained in:
parent
aef60a11b5
commit
11af33af2a
|
@ -45,6 +45,7 @@ import org.apache.hadoop.hbase.util.FSUtils;
|
|||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.experimental.categories.Category;
|
||||
|
@ -100,6 +101,7 @@ public class TestRegionOpen {
|
|||
assertEquals(completed + 1, exec.getCompletedTaskCount());
|
||||
}
|
||||
|
||||
@Ignore // Needs rewrite since HBASE-19391 which returns null out of createRegionOnFileSystem
|
||||
@Test
|
||||
public void testNonExistentRegionReplica() throws Exception {
|
||||
final TableName tableName = TableName.valueOf(name.getMethodName());
|
||||
|
|
Loading…
Reference in New Issue