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

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


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

commit 5e910fa0d6b29d5894881fef9d050cdfb92cfdfd
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