Repository: hadoop Updated Branches: refs/heads/branch-2 1371f993a -> 5574f8279
MAPREDUCE-6670. TestJobListCache#testEviction sometimes fails on Windows with timeout. Contributed by Gergely Novák. (cherry picked from commit de96d7c88a42cd54bd88ce2de63122998e967efa) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/5574f827 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/5574f827 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/5574f827 Branch: refs/heads/branch-2 Commit: 5574f827991cfc3d14f71184296866d387ed174f Parents: 1371f99 Author: Junping Du <[email protected]> Authored: Wed Apr 6 08:32:35 2016 -0700 Committer: Junping Du <[email protected]> Committed: Wed Apr 6 08:35:51 2016 -0700 ---------------------------------------------------------------------- .../java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/5574f827/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java ---------------------------------------------------------------------- diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java index 6ebbb7c..3ccc222 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java @@ -45,7 +45,7 @@ public class TestJobListCache { cache.values().size()); } - @Test (timeout = 1000) + @Test (timeout = 5000) public void testEviction() throws InterruptedException { int maxSize = 2; JobListCache cache = new JobListCache(maxSize, 1000);
