Repository: phoenix Updated Branches: refs/heads/4.x-HBase-1.1 cd0eb1254 -> 82d0878c7
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/82d0878c Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/82d0878c Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/82d0878c Branch: refs/heads/4.x-HBase-1.1 Commit: 82d0878c7b535506879c364395be005d6726db00 Parents: cd0eb12 Author: Samarth Jain <[email protected]> Authored: Sat Jul 15 11:28:45 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Sat Jul 15 11:28:45 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/82d0878c/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 27808f5..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 = 150; + private static final int TEAR_DOWN_THRESHOLD = 20; private int testRuns = 0;
