HBASE-25072 Remove the unnecessary System.out.println in MasterRegistry (#2429)

Co-authored-by: niuyulin <niuyulin@xiaomi.com>
Signed-off-by: Jan Hentschel <janh@apache.org>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
niuyulin 2020-09-21 02:08:43 +08:00 committed by Jan Hentschel
parent 93935e7e25
commit 5e910fa0d6
No known key found for this signature in database
GPG Key ID: 5CD818B19CC299A3
1 changed files with 1 additions and 2 deletions

View File

@ -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();
}
}
}
}