You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/04/27 16:35:11 UTC

ignite git commit: ignite-2.0 - Do not wait for topology in restart tests

Repository: ignite
Updated Branches:
  refs/heads/ignite-2.0 ba32b40fa -> f5fe301e1


ignite-2.0 - Do not wait for topology in restart tests


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

Branch: refs/heads/ignite-2.0
Commit: f5fe301e12a8e3418b78a4299e7e59818263a22b
Parents: ba32b40
Author: Alexey Goncharuk <al...@gmail.com>
Authored: Thu Apr 27 19:35:53 2017 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Thu Apr 27 19:35:53 2017 +0300

----------------------------------------------------------------------
 .../cache/distributed/GridCacheAbstractNodeRestartSelfTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/f5fe301e/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCacheAbstractNodeRestartSelfTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCacheAbstractNodeRestartSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCacheAbstractNodeRestartSelfTest.java
index d268e47..211cc34 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCacheAbstractNodeRestartSelfTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCacheAbstractNodeRestartSelfTest.java
@@ -810,7 +810,7 @@ public abstract class GridCacheAbstractNodeRestartSelfTest extends GridCommonAbs
                             int cnt = 0;
 
                             while (System.currentTimeMillis() < endTime && err.get() == null) {
-                                stopGrid(gridIdx);
+                                stopGrid(getTestIgniteInstanceName(gridIdx), false, false);
                                 startGrid(gridIdx);
 
                                 int c = ++cnt;