Return-Path: X-Original-To: apmail-phoenix-commits-archive@minotaur.apache.org Delivered-To: apmail-phoenix-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0E7431826C for ; Wed, 12 Aug 2015 01:39:54 +0000 (UTC) Received: (qmail 84899 invoked by uid 500); 12 Aug 2015 01:39:54 -0000 Delivered-To: apmail-phoenix-commits-archive@phoenix.apache.org Received: (qmail 84814 invoked by uid 500); 12 Aug 2015 01:39:53 -0000 Mailing-List: contact commits-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list commits@phoenix.apache.org Received: (qmail 84615 invoked by uid 99); 12 Aug 2015 01:39:53 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Aug 2015 01:39:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C18FCE35C6; Wed, 12 Aug 2015 01:39:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jamestaylor@apache.org To: commits@phoenix.apache.org Date: Wed, 12 Aug 2015 01:40:00 -0000 Message-Id: <5c042da37be442c198e1d412054ee7b6@git.apache.org> In-Reply-To: <3c3463c1fc00488eb74c1bbc863406d3@git.apache.org> References: <3c3463c1fc00488eb74c1bbc863406d3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [08/12] phoenix git commit: PHOENIX-1994 - TestIndexWriter#testFailureOnRunningUpdateAbortsPending() deadlocks on JDK 8 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/233b48d6 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/233b48d6 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/233b48d6 Branch: refs/heads/4.5-HBase-0.98 Commit: 233b48d6d0c9807172f4a617d75926ffa86f7e34 Parents: 42476da Author: Cody Marcel Authored: Mon Aug 10 12:08:07 2015 -0700 Committer: James Taylor Committed: Tue Aug 11 18:36:52 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/233b48d6/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 tables = new HashMap(); FakeTableFactory factory = new FakeTableFactory(tables);