You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by se...@apache.org on 2020/07/16 12:22:22 UTC

[ignite] branch master updated: IGNITE-13242 Erroneous check was removed. - Fixes #8021.

This is an automated email from the ASF dual-hosted git repository.

sergeychugunov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 4c993fd  IGNITE-13242 Erroneous check was removed. - Fixes #8021.
4c993fd is described below

commit 4c993fd539ccf52c71d40e8ec60c44c7ebb10548
Author: ibessonov <be...@gmail.com>
AuthorDate: Thu Jul 16 15:20:54 2020 +0300

    IGNITE-13242 Erroneous check was removed. - Fixes #8021.
    
    Signed-off-by: Sergey Chugunov <se...@gmail.com>
---
 .../cache/persistence/LocalWalModeChangeDuringRebalancingSelfTest.java | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/LocalWalModeChangeDuringRebalancingSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/LocalWalModeChangeDuringRebalancingSelfTest.java
index 0b7fd23..ad8fc56 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/LocalWalModeChangeDuringRebalancingSelfTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/LocalWalModeChangeDuringRebalancingSelfTest.java
@@ -579,9 +579,6 @@ public class LocalWalModeChangeDuringRebalancingSelfTest extends GridCommonAbstr
 
         cache = newIgnite.cache(DEFAULT_CACHE_NAME);
 
-        for (int k = 0; k < keysCnt; k++)
-            assertFalse("k=" + k + ", v=" + cache.get(k), cache.containsKey(k));
-
         Collection<Integer> lostParts = cache.lostPartitions();
 
         Set<Integer> keys = new TreeSet<>();