Repository: phoenix Updated Branches: refs/heads/master d541d6f28 -> bf83b8dd6
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/bf83b8dd Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/bf83b8dd Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/bf83b8dd Branch: refs/heads/master Commit: bf83b8dd65d8c0110456d352bed96fa18676886a Parents: d541d6f Author: Samarth Jain <[email protected]> Authored: Sat Jul 15 11:24:34 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Sat Jul 15 11:24: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/bf83b8dd/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;
