Repository: phoenix Updated Branches: refs/heads/4.x-HBase-0.98 11f009abd -> b385105ee
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/b385105e Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/b385105e Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/b385105e Branch: refs/heads/4.x-HBase-0.98 Commit: b385105ee9c1d517956c1cb0c1276b05863cc3a3 Parents: 11f009a Author: Samarth Jain <[email protected]> Authored: Sat Jul 15 11:29:30 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Sat Jul 15 11:29:30 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/b385105e/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;
