Repository: hbase Updated Branches: refs/heads/branch-1.4 412148518 -> bf1049926
HBASE-19685 Fix TestFSErrorsExposed#testFullSystemBubblesFSErrors by increasing scanner timeout. Signed-off-by: Apekshit Sharma <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/bf104992 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/bf104992 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/bf104992 Branch: refs/heads/branch-1.4 Commit: bf1049926a7528251c766f46e39c11631dc8860e Parents: 4121485 Author: Chia-Ping Tsai <[email protected]> Authored: Thu Jan 11 10:27:18 2018 -0800 Committer: Apekshit Sharma <[email protected]> Committed: Thu Jan 11 10:40:17 2018 -0800 ---------------------------------------------------------------------- .../org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/bf104992/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java index e4a91c3..0ee5f6b 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java @@ -183,7 +183,7 @@ public class TestFSErrorsExposed { try { // Make it fail faster. util.getConfiguration().setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 1); - + util.getConfiguration().setInt(HConstants.HBASE_CLIENT_SCANNER_TIMEOUT_PERIOD, 90000); util.startMiniCluster(1); TableName tableName = TableName.valueOf("table"); byte[] fam = Bytes.toBytes("fam");
