Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id EF508200D0F for ; Fri, 29 Sep 2017 21:53:13 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id EDDDB1609D1; Fri, 29 Sep 2017 19:53:13 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3F9F41609BC for ; Fri, 29 Sep 2017 21:53:13 +0200 (CEST) Received: (qmail 57474 invoked by uid 500); 29 Sep 2017 19:53:12 -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 57465 invoked by uid 99); 29 Sep 2017 19:53:12 -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; Fri, 29 Sep 2017 19:53:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4E917F5523; Fri, 29 Sep 2017 19:53:12 +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 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: phoenix git commit: PHOENIX-4239 Ignore flapping PartialIndexRebuilderIT tests until fix is ready Date: Fri, 29 Sep 2017 19:53:12 +0000 (UTC) archived-at: Fri, 29 Sep 2017 19:53:14 -0000 Repository: phoenix Updated Branches: refs/heads/master f00380ef7 -> c4b478dc1 PHOENIX-4239 Ignore flapping PartialIndexRebuilderIT tests until fix is ready Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/c4b478dc Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/c4b478dc Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/c4b478dc Branch: refs/heads/master Commit: c4b478dc11898483f11c5880d85b2d03cca427d3 Parents: f00380e Author: James Taylor Authored: Fri Sep 29 12:53:16 2017 -0700 Committer: James Taylor Committed: Fri Sep 29 12:53:16 2017 -0700 ---------------------------------------------------------------------- .../org/apache/phoenix/end2end/index/PartialIndexRebuilderIT.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/c4b478dc/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/PartialIndexRebuilderIT.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/PartialIndexRebuilderIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/PartialIndexRebuilderIT.java index d0a06b4..e925050 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/PartialIndexRebuilderIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/PartialIndexRebuilderIT.java @@ -65,6 +65,7 @@ import org.apache.phoenix.util.RunUntilFailure; import org.apache.phoenix.util.SchemaUtil; import org.apache.phoenix.util.TestUtil; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.slf4j.Logger; @@ -822,11 +823,13 @@ public class PartialIndexRebuilderIT extends BaseUniqueNamesOwnClusterIT { } } + @Ignore("Until PHOENIX-4239 is fixed") @Test public void testIndexWriteFailureDisablingIndex() throws Throwable { testIndexWriteFailureDuringRebuild(PIndexState.DISABLE); } + @Ignore("Until PHOENIX-4239 is fixed") @Test public void testIndexWriteFailureLeavingIndexActive() throws Throwable { testIndexWriteFailureDuringRebuild(PIndexState.PENDING_ACTIVE);