Repository: phoenix Updated Branches: refs/heads/4.x-HBase-1.2 27faaa666 -> 2ac54fa08
PHOENIX-4030 Decrease TEAR_DOWN_THRESHOLD in ParallelRunListener to prevent OOM in tests Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/2ac54fa0 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/2ac54fa0 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/2ac54fa0 Branch: refs/heads/4.x-HBase-1.2 Commit: 2ac54fa08b7637c45f79b9e230716e5346eeef33 Parents: 27faaa6 Author: Samarth Jain <[email protected]> Authored: Sat Jul 15 11:25:34 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Sat Jul 15 11:25:34 2017 -0700 ---------------------------------------------------------------------- .../it/java/org/apache/phoenix/end2end/ParallelRunListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/2ac54fa0/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelRunListener.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelRunListener.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelRunListener.java index bf3a969..69a6cef 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelRunListener.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelRunListener.java @@ -24,7 +24,7 @@ import org.junit.runner.notification.RunListener; public class ParallelRunListener extends RunListener { // This causes output to go to the console when run through maven // private static final Log LOG = LogFactory.getLog(ParallelRunListener.class); - private static final int TEAR_DOWN_THRESHOLD = 100; + private static final int TEAR_DOWN_THRESHOLD = 20; private int testRuns = 0;
