Repository: phoenix Updated Branches: refs/heads/master c811cf687 -> d401fa3a6
PHOENIX-1994 - TestIndexWriter#testFailureOnRunningUpdateAbortsPending() deadlocks on JDK 8 Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/d401fa3a Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/d401fa3a Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/d401fa3a Branch: refs/heads/master Commit: d401fa3a6f5ec9787b120643881a389b9af7b19f Parents: c811cf6 Author: Cody Marcel <[email protected]> Authored: Mon Aug 10 12:08:07 2015 -0700 Committer: Cody Marcel <[email protected]> Committed: Mon Aug 10 12:08:07 2015 -0700 ---------------------------------------------------------------------- .../java/org/apache/phoenix/hbase/index/write/TestIndexWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/d401fa3a/phoenix-core/src/test/java/org/apache/phoenix/hbase/index/write/TestIndexWriter.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/test/java/org/apache/phoenix/hbase/index/write/TestIndexWriter.java b/phoenix-core/src/test/java/org/apache/phoenix/hbase/index/write/TestIndexWriter.java index 37a8cf4..8f576cf 100644 --- a/phoenix-core/src/test/java/org/apache/phoenix/hbase/index/write/TestIndexWriter.java +++ b/phoenix-core/src/test/java/org/apache/phoenix/hbase/index/write/TestIndexWriter.java @@ -145,7 +145,7 @@ public class TestIndexWriter { Abortable abort = new StubAbortable(); Stoppable stop = Mockito.mock(Stoppable.class); // single thread factory so the older request gets queued - ExecutorService exec = Executors.newFixedThreadPool(1); + ExecutorService exec = Executors.newFixedThreadPool(3); Map<ImmutableBytesPtr, HTableInterface> tables = new HashMap<ImmutableBytesPtr, HTableInterface>(); FakeTableFactory factory = new FakeTableFactory(tables);
