ignite-3477-master fix stop node after test
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/10c0364c Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/10c0364c Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/10c0364c Branch: refs/heads/ignite-3477-master Commit: 10c0364c4a6f5bd90d8dfb3d222b4a5792222c7a Parents: 2b6826e Author: Dmitriy Govorukhin <[email protected]> Authored: Wed Apr 12 15:58:41 2017 +0300 Committer: Dmitriy Govorukhin <[email protected]> Committed: Wed Apr 12 15:58:41 2017 +0300 ---------------------------------------------------------------------- .../cache/distributed/near/GridCacheNearTxForceKeyTest.java | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/10c0364c/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearTxForceKeyTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearTxForceKeyTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearTxForceKeyTest.java index f1c791e..66f34c9 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearTxForceKeyTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearTxForceKeyTest.java @@ -80,4 +80,11 @@ public class GridCacheNearTxForceKeyTest extends GridCommonAbstractTest { assertTrue(ignite0.affinity(null).isPrimary(ignite1.cluster().localNode(), key)); } + + /** {@inheritDoc} */ + @Override protected void afterTestsStopped() throws Exception { + super.afterTestsStopped(); + + stopAllGrids(); + } }
