HBASE-13084 addendum disable info server in shell test

Signed-off-by: stack <stack@apache.org>
This commit is contained in:
zhangduo 2015-02-28 11:21:03 +08:00 committed by stack
parent bec2b0d320
commit fdb48a7bbe
1 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,8 @@ public abstract class AbstractTestShell {
TEST_UTIL.getConfiguration().setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 6);
TEST_UTIL.getConfiguration().setBoolean(CoprocessorHost.ABORT_ON_ERROR_KEY, false);
TEST_UTIL.getConfiguration().setInt("hfile.format.version", 3);
TEST_UTIL.getConfiguration().setInt(HConstants.MASTER_INFO_PORT, -1);
TEST_UTIL.getConfiguration().setInt(HConstants.REGIONSERVER_INFO_PORT, -1);
// Security setup configuration
SecureTestUtil.enableSecurity(TEST_UTIL.getConfiguration());
VisibilityTestUtil.enableVisiblityLabels(TEST_UTIL.getConfiguration());