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:
Viraj Jasani 2021-08-10 10:57:04 +05:30
parent 79a6dc6bfd
commit 40a7a75a19
No known key found for this signature in database
GPG Key ID: 08E70F70AB71C5A1
1 changed files with 5 additions and 0 deletions

View File

@ -83,6 +83,11 @@ public class TestMaster {
public static void beforeAllTests() throws Exception {
// we will retry operations when PleaseHoldException is thrown
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.
TEST_UTIL.startMiniCluster(2);
admin = TEST_UTIL.getAdmin();