Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 bbdccb79d -> 9d40368d6


Revert "HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration"

This reverts commit bbdccb79dd9d44d09f4e79de4dc3bd010bc586a5.


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

Branch: refs/heads/branch-1.2
Commit: 9d40368d6373787b186237c8dda4c2276b3cf18e
Parents: bbdccb7
Author: Jan Hentschel <jan.hentsc...@ultratendency.com>
Authored: Mon Dec 11 22:45:49 2017 +0100
Committer: Jan Hentschel <jan.hentsc...@ultratendency.com>
Committed: Mon Dec 11 22:45:49 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/9d40368d/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