Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4568B200BCA for ; Mon, 7 Nov 2016 05:29:51 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 442D4160B19; Mon, 7 Nov 2016 04:29:51 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 982C9160B13 for ; Mon, 7 Nov 2016 05:29:50 +0100 (CET) Received: (qmail 51697 invoked by uid 500); 7 Nov 2016 04:29:49 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 51107 invoked by uid 99); 7 Nov 2016 04:29:48 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Nov 2016 04:29:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 65E23F1728; Mon, 7 Nov 2016 04:29:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: shroman@apache.org To: commits@ignite.apache.org Date: Mon, 07 Nov 2016 04:29:54 -0000 Message-Id: <14f2db8a04b94c57964007ad957c39f4@git.apache.org> In-Reply-To: <01b5cd5945704da08983eecacf037623@git.apache.org> References: <01b5cd5945704da08983eecacf037623@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [07/50] [abbrv] ignite git commit: Added node stop to IgniteCacheExpireAndUpdateConsistencyTest. archived-at: Mon, 07 Nov 2016 04:29:51 -0000 Added node stop to IgniteCacheExpireAndUpdateConsistencyTest. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/3e8a1c6b Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/3e8a1c6b Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/3e8a1c6b Branch: refs/heads/ignite-2788 Commit: 3e8a1c6b045c231dbb3c972463000f824386aee9 Parents: b280c3e Author: vozerov-gridgain Authored: Thu Sep 29 11:08:23 2016 +0300 Committer: vozerov-gridgain Committed: Thu Sep 29 11:08:23 2016 +0300 ---------------------------------------------------------------------- .../cache/IgniteCacheExpireAndUpdateConsistencyTest.java | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/3e8a1c6b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheExpireAndUpdateConsistencyTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheExpireAndUpdateConsistencyTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheExpireAndUpdateConsistencyTest.java index 7f54a83..882ed22 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheExpireAndUpdateConsistencyTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheExpireAndUpdateConsistencyTest.java @@ -97,6 +97,13 @@ public class IgniteCacheExpireAndUpdateConsistencyTest extends GridCommonAbstrac assertTrue(client.configuration().isClientMode()); } + /** {@inheritDoc} */ + @Override protected void afterTestsStopped() throws Exception { + stopAllGrids(); + + super.afterTestsStopped(); + } + /** * @throws Exception If failed. */