Repository: hbase Updated Branches: refs/heads/HBASE-19064 cd2c54e0f -> e47ba21cd (forced update)
HBASE-19685 Fix TestFSErrorsExposed#testFullSystemBubblesFSErrors by increasing scanner timeout. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/0b9dc14d Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/0b9dc14d Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/0b9dc14d Branch: refs/heads/HBASE-19064 Commit: 0b9dc14dbca98565d29bcd2be5100e29ebcf0e65 Parents: 71a1192 Author: Apekshit Sharma <[email protected]> Authored: Thu Jan 11 10:27:18 2018 -0800 Committer: Apekshit Sharma <[email protected]> Committed: Thu Jan 11 10:31:45 2018 -0800 ---------------------------------------------------------------------- .../org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/0b9dc14d/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 bd66bde..bbf06fd 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 @@ -188,6 +188,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.getConfiguration().setInt("hbase.lease.recovery.timeout", 10000); util.getConfiguration().setInt("hbase.lease.recovery.dfs.timeout", 1000); util.startMiniCluster(1);
