HBASE-18278 Enable and Fix for unit test hbase.master.procedure.TestServerCrashProcedure#testRecoveryAndDoubleExecutionOnRsWithMeta
Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
parent
a19e5673d6
commit
038d7e8984
|
@ -81,6 +81,7 @@ public class MasterProcedureTestingUtility {
|
|||
env.getMasterServices().getServerManager().removeRegion(regionState.getRegion());
|
||||
}
|
||||
am.stop();
|
||||
master.setServerCrashProcessingEnabled(false);
|
||||
master.setInitialized(false);
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -39,7 +39,6 @@ import org.apache.hadoop.hbase.testclassification.LargeTests;
|
|||
import org.apache.hadoop.hbase.testclassification.MasterTests;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.experimental.categories.Category;
|
||||
|
||||
|
@ -87,7 +86,6 @@ public class TestServerCrashProcedure {
|
|||
}
|
||||
|
||||
@Test(timeout=60000)
|
||||
@Ignore // Fix for AMv2
|
||||
public void testRecoveryAndDoubleExecutionOnRsWithMeta() throws Exception {
|
||||
testRecoveryAndDoubleExecution(true);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue