Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0C3DDD3A6 for ; Wed, 29 Aug 2012 13:25:08 +0000 (UTC) Received: (qmail 38675 invoked by uid 500); 29 Aug 2012 13:25:07 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 38618 invoked by uid 500); 29 Aug 2012 13:25:07 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 38536 invoked by uid 99); 29 Aug 2012 13:25:07 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2012 13:25:07 +0000 Date: Thu, 30 Aug 2012 00:25:07 +1100 (NCT) From: "nkeywal (JIRA)" To: issues@hbase.apache.org Message-ID: <2096244320.11714.1346246707671.JavaMail.jiratomcat@arcas> Subject: [jira] [Created] (HBASE-6683) Wrong warning in logs WARN org.apache.hadoop.ipc.HBaseServer: Methods length : 5 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 nkeywal created HBASE-6683: ------------------------------ Summary: 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 Priority: Critical Fix For: 0.96.0 >From ProtobufRpcEngine.java {code} static Method getMethod(Class 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