Repository: hbase Updated Branches: refs/heads/branch-1.2 eb77f0603 -> af41979bb
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/af41979b Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/af41979b Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/af41979b Branch: refs/heads/branch-1.2 Commit: af41979bb4bbfa223cf06ea614bf926855891ad5 Parents: eb77f06 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:41:14 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/af41979b/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 cc509a4..335872f 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");
