svn merge -c 1231732 from trunk for HADOOP-7968.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23-PB@1231857 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
de5dd8ad89
commit
d1b7ba945f
|
@ -38,6 +38,8 @@ Release 0.23-PB - Unreleased
|
|||
HADOOP-7957. Classes deriving GetGroupsBase should be able to override
|
||||
proxy creation. (jitendra)
|
||||
|
||||
HADOOP-7968. Errant println left in RPC.getHighestSupportedProtocol (Sho Shimauchi via harsh)
|
||||
|
||||
BUG FIXES
|
||||
|
||||
HADOOP-7695. RPC.stopProxy can throw unintended exception while logging
|
||||
|
|
|
@ -791,7 +791,10 @@ public class RPC {
|
|||
String protocolName) {
|
||||
Long highestVersion = 0L;
|
||||
ProtoClassProtoImpl highest = null;
|
||||
System.out.println("Size of protoMap for " + rpcKind + " =" + getProtocolImplMap(rpcKind).size());
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Size of protoMap for " + rpcKind + " ="
|
||||
+ getProtocolImplMap(rpcKind).size());
|
||||
}
|
||||
for (Map.Entry<ProtoNameVer, ProtoClassProtoImpl> pv :
|
||||
getProtocolImplMap(rpcKind).entrySet()) {
|
||||
if (pv.getKey().protocol.equals(protocolName)) {
|
||||
|
|
Loading…
Reference in New Issue