You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2018/10/10 13:52:32 UTC

ignite git commit: IGNITE-9724: MVCC: impoved reliability of CacheMvccSelectForUpdateQueryAbstractTest.

Repository: ignite
Updated Branches:
  refs/heads/master 16ffdeb99 -> 8305d64ad


IGNITE-9724: MVCC: impoved reliability of CacheMvccSelectForUpdateQueryAbstractTest.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8305d64a
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8305d64a
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8305d64a

Branch: refs/heads/master
Commit: 8305d64adab39a28da5ccb6f2a31367c3c0ba3aa
Parents: 16ffdeb
Author: devozerov <vo...@gridgain.com>
Authored: Wed Oct 10 16:52:23 2018 +0300
Committer: devozerov <vo...@gridgain.com>
Committed: Wed Oct 10 16:52:23 2018 +0300

----------------------------------------------------------------------
 .../cache/mvcc/CacheMvccSelectForUpdateQueryAbstractTest.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/8305d64a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccSelectForUpdateQueryAbstractTest.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccSelectForUpdateQueryAbstractTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccSelectForUpdateQueryAbstractTest.java
index 00c748e..c6584e9 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccSelectForUpdateQueryAbstractTest.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccSelectForUpdateQueryAbstractTest.java
@@ -96,8 +96,6 @@ public abstract class CacheMvccSelectForUpdateQueryAbstractTest extends CacheMvc
      *
      */
     public void testSelectForUpdateDistributed() throws Exception {
-        fail("https://issues.apache.org/jira/browse/IGNITE-9724");
-
         doTestSelectForUpdateDistributed("Person", false);
     }
 
@@ -162,6 +160,8 @@ public abstract class CacheMvccSelectForUpdateQueryAbstractTest extends CacheMvc
      * @throws Exception If failed.
      */
     void doTestSelectForUpdateDistributed(String cacheName, boolean outsideTx) throws Exception {
+        awaitPartitionMapExchange();
+
         Ignite node = grid(0);
 
         IgniteCache<Integer, ?> cache = node.cache(cacheName);