You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ns...@apache.org on 2011/10/11 19:43:47 UTC

svn commit: r1181950 - /hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/ipc/HBaseRPC.java

Author: nspiegelberg
Date: Tue Oct 11 17:43:47 2011
New Revision: 1181950

URL: http://svn.apache.org/viewvc?rev=1181950&view=rev
Log:
Port Slow Query Log to 90

Summary: Straight port of D288291. Mostly trivial. HBaseRpcMetrics no longer
allows on the fly metric creation in 90, so I just left out the slow response
counter from 89.

Test Plan: Ran all unit tests. No new failures.

Reviewers: nspiegelberg, kannan

Reviewed By: kannan

CC: hbase@lists, kannan, riley

Differential Revision: 311869

Modified:
    hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/ipc/HBaseRPC.java

Modified: hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/ipc/HBaseRPC.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/ipc/HBaseRPC.java?rev=1181950&r1=1181949&r2=1181950&view=diff
==============================================================================
--- hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/ipc/HBaseRPC.java (original)
+++ hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/ipc/HBaseRPC.java Tue Oct 11 17:43:47 2011
@@ -587,8 +587,8 @@ public class HBaseRPC {
       this.verbose = verbose;
       this.warnResponseTime = conf.getInt(WARN_RESPONSE_TIME,
           DEFAULT_WARN_RESPONSE_TIME);
-    this.warnResponseSize = conf.getInt(WARN_RESPONSE_SIZE,
-        DEFAULT_WARN_RESPONSE_SIZE);
+      this.warnResponseSize = conf.getInt(WARN_RESPONSE_SIZE,
+          DEFAULT_WARN_RESPONSE_SIZE);
     }
 
     @Override