HBASE-26185 Fix TestMaster#testMoveRegionWhenNotInitialized in the presence of hbase.min.version.move.system.tables (#3573)
Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
parent
7f614ce77e
commit
5e8a269b1a
|
@ -90,6 +90,11 @@ public class TestMaster {
|
||||||
public static void beforeAllTests() throws Exception {
|
public static void beforeAllTests() throws Exception {
|
||||||
// we will retry operations when PleaseHoldException is thrown
|
// we will retry operations when PleaseHoldException is thrown
|
||||||
TEST_UTIL.getConfiguration().setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 3);
|
TEST_UTIL.getConfiguration().setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 3);
|
||||||
|
// Set hbase.min.version.move.system.tables as version 0 so that
|
||||||
|
// testMoveRegionWhenNotInitialized never fails even if hbase-default has valid default
|
||||||
|
// value present for production use-case.
|
||||||
|
// See HBASE-22923 for details.
|
||||||
|
TEST_UTIL.getConfiguration().set("hbase.min.version.move.system.tables", "0.0.0");
|
||||||
// Start a cluster of two regionservers.
|
// Start a cluster of two regionservers.
|
||||||
TEST_UTIL.startMiniCluster(2);
|
TEST_UTIL.startMiniCluster(2);
|
||||||
admin = TEST_UTIL.getAdmin();
|
admin = TEST_UTIL.getAdmin();
|
||||||
|
|
Loading…
Reference in New Issue