[
https://issues.apache.org/jira/browse/HBASE-6683?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13444811#comment-13444811
]
Hudson commented on HBASE-6683:
-------------------------------
Integrated in HBase-TRUNK-on-Hadoop-2.0.0 #154 (See
[https://builds.apache.org/job/HBase-TRUNK-on-Hadoop-2.0.0/154/])
HBASE-6683 Wrong warning in logs WARN org.apache.hadoop.ipc.HBaseServer:
Methods length : 5 (Devaraj Das) (Revision 1378845)
Result = FAILURE
nkeywal :
Files :
*
/hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/ProtobufRpcEngine.java
> Wrong warning in logs WARN org.apache.hadoop.ipc.HBaseServer: Methods length
> : 5
> --------------------------------------------------------------------------------
>
> Key: HBASE-6683
> URL: https://issues.apache.org/jira/browse/HBASE-6683
> Project: HBase
> Issue Type: Bug
> Reporter: nkeywal
> Assignee: Devaraj Das
> Priority: Critical
> Fix For: 0.96.0
>
> Attachments: 6683.patch
>
>
> From ProtobufRpcEngine.java
> {code}
> static Method getMethod(Class<? extends VersionedProtocol> protocol,
> String methodName) {
> Method method = methodInstances.get(methodName);
> if (method != null) {
> return method;
> }
> Method[] methods = protocol.getMethods();
> LOG.warn("Methods length : " + methods.length); <=========
> for (Method m : methods) {
> if (m.getName().equals(methodName)) {
> m.setAccessible(true);
> methodInstances.put(methodName, m);
> return m;
> }
> }
> return null;
> }
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira