HBASE-19868 TestCoprocessorWhitelistMasterObserver is flakey

This commit is contained in:
Michael Stack 2018-01-29 21:33:16 -08:00
parent 34c6c99041
commit 98c9d8f7a1
1 changed files with 4 additions and 4 deletions

View File

@ -103,7 +103,7 @@ public class TestCoprocessorWhitelistMasterObserver extends SecureTestUtil {
CoprocessorWhitelistMasterObserver.CP_COPROCESSOR_WHITELIST_PATHS_KEY, CoprocessorWhitelistMasterObserver.CP_COPROCESSOR_WHITELIST_PATHS_KEY,
whitelistedPaths); whitelistedPaths);
// set retries low to raise exception quickly // set retries low to raise exception quickly
conf.setInt("hbase.client.retries.number", 1); conf.setInt("hbase.client.retries.number", 5);
UTIL.startMiniCluster(); UTIL.startMiniCluster();
UTIL.createTable(TEST_TABLE, new byte[][] { TEST_FAMILY }); UTIL.createTable(TEST_TABLE, new byte[][] { TEST_FAMILY });
UTIL.waitUntilAllRegionsAssigned(TEST_TABLE); UTIL.waitUntilAllRegionsAssigned(TEST_TABLE);
@ -137,7 +137,7 @@ public class TestCoprocessorWhitelistMasterObserver extends SecureTestUtil {
private static void negativeTestCase(String[] whitelistedPaths, private static void negativeTestCase(String[] whitelistedPaths,
String coprocessorPath) throws Exception { String coprocessorPath) throws Exception {
Configuration conf = UTIL.getConfiguration(); Configuration conf = UTIL.getConfiguration();
conf.setInt("hbase.client.retries.number", 1); conf.setInt("hbase.client.retries.number", 5);
// load coprocessor under test // load coprocessor under test
conf.set(CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY, conf.set(CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY,
CoprocessorWhitelistMasterObserver.class.getName()); CoprocessorWhitelistMasterObserver.class.getName());
@ -269,7 +269,7 @@ public class TestCoprocessorWhitelistMasterObserver extends SecureTestUtil {
conf.setStrings(CoprocessorWhitelistMasterObserver.CP_COPROCESSOR_WHITELIST_PATHS_KEY, conf.setStrings(CoprocessorWhitelistMasterObserver.CP_COPROCESSOR_WHITELIST_PATHS_KEY,
new String[]{}); new String[]{});
// set retries low to raise exception quickly // set retries low to raise exception quickly
conf.setInt("hbase.client.retries.number", 1); conf.setInt("hbase.client.retries.number", 5);
UTIL.startMiniCluster(); UTIL.startMiniCluster();
HTableDescriptor htd = new HTableDescriptor(TEST_TABLE); HTableDescriptor htd = new HTableDescriptor(TEST_TABLE);
HColumnDescriptor hcd = new HColumnDescriptor(TEST_FAMILY); HColumnDescriptor hcd = new HColumnDescriptor(TEST_FAMILY);
@ -314,7 +314,7 @@ public class TestCoprocessorWhitelistMasterObserver extends SecureTestUtil {
conf.setStrings(CoprocessorWhitelistMasterObserver.CP_COPROCESSOR_WHITELIST_PATHS_KEY, conf.setStrings(CoprocessorWhitelistMasterObserver.CP_COPROCESSOR_WHITELIST_PATHS_KEY,
new String[]{}); new String[]{});
// set retries low to raise exception quickly // set retries low to raise exception quickly
conf.setInt("hbase.client.retries.number", 1); conf.setInt("hbase.client.retries.number", 5);
UTIL.startMiniCluster(); UTIL.startMiniCluster();
HTableDescriptor htd = new HTableDescriptor(TEST_TABLE); HTableDescriptor htd = new HTableDescriptor(TEST_TABLE);
HColumnDescriptor hcd = new HColumnDescriptor(TEST_FAMILY); HColumnDescriptor hcd = new HColumnDescriptor(TEST_FAMILY);