PHOENIX-2333 Disable flapping MutableIndexFailureIT tests
Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/3d259d57 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/3d259d57 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/3d259d57 Branch: refs/heads/txn Commit: 3d259d57a3bbff746b205c381638db1ac6103e6d Parents: c0fb050 Author: James Taylor <[email protected]> Authored: Sat Oct 17 17:00:27 2015 -0700 Committer: James Taylor <[email protected]> Committed: Sat Oct 17 17:00:27 2015 -0700 ---------------------------------------------------------------------- .../org/apache/phoenix/end2end/index/MutableIndexFailureIT.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/3d259d57/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/MutableIndexFailureIT.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/MutableIndexFailureIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/MutableIndexFailureIT.java index dfc7ffb..364b358 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/MutableIndexFailureIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/MutableIndexFailureIT.java @@ -71,6 +71,7 @@ import org.apache.phoenix.util.SchemaUtil; import org.apache.phoenix.util.StringUtil; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.categories.Category; /** @@ -131,11 +132,13 @@ public class MutableIndexFailureIT extends BaseTest { } } + @Ignore("See PHOENIX-2331") @Test(timeout=300000) public void testWriteFailureDisablesLocalIndex() throws Exception { testWriteFailureDisablesIndex(true); } + @Ignore("See PHOENIX-2332") @Test(timeout=300000) public void testWriteFailureDisablesIndex() throws Exception { testWriteFailureDisablesIndex(false);
