This is an automated email from the ASF dual-hosted git repository.

janh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new b5adfe1  HBASE-25072 Remove the unnecessary System.out.println in 
MasterRegistry (#2429)
b5adfe1 is described below

commit b5adfe10314057e4a25a76b6c5bd0f1c4832682d
Author: niuyulin <nyl...@163.com>
AuthorDate: Mon Sep 21 02:08:43 2020 +0800

    HBASE-25072 Remove the unnecessary System.out.println in MasterRegistry 
(#2429)
    
    Co-authored-by: niuyulin <niuyu...@xiaomi.com>
    Signed-off-by: Jan Hentschel <j...@apache.org>
    Signed-off-by: Duo Zhang <zhang...@apache.org>
    Signed-off-by: Viraj Jasani <vjas...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/client/MasterRegistry.java   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterRegistry.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterRegistry.java
index 2a7ae16..0658268 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterRegistry.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterRegistry.java
@@ -325,7 +325,6 @@ public class MasterRegistry implements ConnectionRegistry {
   }
 
   CompletableFuture<List<ServerName>> getMasters() {
-    System.out.println("getMasters()");
     return this
         .<GetMastersResponse> call((c, s, d) -> s.getMasters(
             c, GetMastersRequest.getDefaultInstance(), d), r -> 
r.getMasterServersCount() != 0,
@@ -346,4 +345,4 @@ public class MasterRegistry implements ConnectionRegistry {
       rpcClient.close();
     }
   }
-}
\ No newline at end of file
+}

Reply via email to