GridCachePartitionedTxSalvageSelfTest fix (remove unnecessary topology change wait) - Fixes #1853.
Signed-off-by: Alexey Goncharuk <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/ca8ad03b Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ca8ad03b Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ca8ad03b Branch: refs/heads/ignite-5024 Commit: ca8ad03b8089ae3b2b466a727aeaa3c1080f8b50 Parents: dcd27a9 Author: Konstantin Dudkov <[email protected]> Authored: Fri Apr 21 15:27:34 2017 +0300 Committer: Alexey Goncharuk <[email protected]> Committed: Fri Apr 21 15:27:34 2017 +0300 ---------------------------------------------------------------------- .../distributed/near/GridCachePartitionedTxSalvageSelfTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/ca8ad03b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedTxSalvageSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedTxSalvageSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedTxSalvageSelfTest.java index 3e56b00..9cc3988 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedTxSalvageSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedTxSalvageSelfTest.java @@ -234,7 +234,7 @@ public class GridCachePartitionedTxSalvageSelfTest extends GridCommonAbstractTes * @throws Exception If failed. */ private void stopNodeAndSleep(long timeout) throws Exception { - stopGrid(0); + stopGrid(getTestIgniteInstanceName(0), false, false); info("Stopped grid.");
