Repository: hbase
Updated Branches:
  refs/heads/branch-1.1 8b1e10ae5 -> fb41dd4ef


Revert "HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration"

This reverts commit 8b1e10ae5d7ea92ebd6b0291d7ab676bfe1cabe6.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/fb41dd4e
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/fb41dd4e
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/fb41dd4e

Branch: refs/heads/branch-1.1
Commit: fb41dd4ef85e31a6c48ecc5884a9928254f0a204
Parents: 8b1e10a
Author: Jan Hentschel <jan.hentsc...@ultratendency.com>
Authored: Mon Dec 11 22:51:24 2017 +0100
Committer: Jan Hentschel <jan.hentsc...@ultratendency.com>
Committed: Mon Dec 11 22:51:24 2017 +0100

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/client/TestUpdateConfiguration.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/fb41dd4e/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
----------------------------------------------------------------------
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
index 8525a51..e2af1ab 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
@@ -49,7 +49,7 @@ public class TestUpdateConfiguration {
   @Test
   public void testOnlineConfigChange() throws IOException {
     LOG.debug("Starting the test");
-    Admin admin = TEST_UTIL.getAdmin();
+    Admin admin = TEST_UTIL.getHBaseAdmin();
     ServerName server = 
TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
     admin.updateConfiguration(server);
   }
@@ -65,7 +65,7 @@ public class TestUpdateConfiguration {
     // update hbase-site.xml by overwriting it
     Files.copy(cnf2Path, cnfPath, StandardCopyOption.REPLACE_EXISTING);
 
-    Admin admin = TEST_UTIL.getAdmin();
+    Admin admin = TEST_UTIL.getHBaseAdmin();
     ServerName server = 
TEST_UTIL.getHBaseCluster().getMaster().getServerName();
     admin.updateConfiguration(server);
     Configuration conf = 
TEST_UTIL.getMiniHBaseCluster().getMaster().getConfiguration();

Reply via email to