You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ja...@apache.org on 2020/09/20 18:19:57 UTC

[hbase] branch branch-2 updated: HBASE-25072 Remove the unnecessary System.out.println in MasterRegistry (#2429)

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 <ny...@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 <ni...@xiaomi.com>
    Signed-off-by: Jan Hentschel <ja...@apache.org>
    Signed-off-by: Duo Zhang <zh...@apache.org>
    Signed-off-by: Viraj Jasani <vj...@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
+}