You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by en...@apache.org on 2015/05/29 21:52:12 UTC

hbase git commit: Revert "HBASE-13647 Default value for hbase.client.operation.timeout is too high"

Repository: hbase
Updated Branches:
  refs/heads/branch-1.0 c377d2def -> 003b909f0


Revert "HBASE-13647 Default value for hbase.client.operation.timeout is too high"

This reverts commit 33aed06db77a35b54e1a093d3e8e8e57e9ddb6a9.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/003b909f
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/003b909f
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/003b909f

Branch: refs/heads/branch-1.0
Commit: 003b909f05f30c524d029e006483bb3219a21488
Parents: c377d2d
Author: Enis Soztutar <en...@apache.org>
Authored: Fri May 29 12:51:54 2015 -0700
Committer: Enis Soztutar <en...@apache.org>
Committed: Fri May 29 12:51:54 2015 -0700

----------------------------------------------------------------------
 hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/003b909f/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
----------------------------------------------------------------------
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index b30852a..5d116c6 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -280,7 +280,7 @@ public final class HConstants {
     "hbase.client.meta.operation.timeout";
 
   /** Default HBase client operation timeout, which is tantamount to a blocking call */
-  public static final int DEFAULT_HBASE_CLIENT_OPERATION_TIMEOUT = 60000;
+  public static final int DEFAULT_HBASE_CLIENT_OPERATION_TIMEOUT = Integer.MAX_VALUE;
 
   /** Used to construct the name of the log directory for a region server */
   public static final String HREGION_LOGDIR_NAME = "WALs";