From e0cf811b33d19d9aa6cd94298aea13d8ce981b14 Mon Sep 17 00:00:00 2001 From: Enis Soztutar Date: Fri, 29 May 2015 12:54:12 -0700 Subject: [PATCH] Revert "HBASE-13647 Default value for hbase.client.operation.timeout is too high" This reverts commit f7c3a3dd55c6adae51840d052434f8daf64b269c. --- .../src/main/java/org/apache/hadoop/hbase/HConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 2fe8fd7c21c..80c12681fd6 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 @@ -281,7 +281,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";