Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AEC8217979 for ; Fri, 10 Jul 2015 11:28:08 +0000 (UTC) Received: (qmail 24224 invoked by uid 500); 10 Jul 2015 11:28:08 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 24194 invoked by uid 500); 10 Jul 2015 11:28:08 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 24185 invoked by uid 99); 10 Jul 2015 11:28:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2015 11:28:08 +0000 X-ASF-Spam-Status: No, hits=-2000.6 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 10 Jul 2015 11:25:58 +0000 Received: (qmail 22445 invoked by uid 99); 10 Jul 2015 11:26:30 -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; Fri, 10 Jul 2015 11:26:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 78AF1DFE34; Fri, 10 Jul 2015 11:26:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-ignite git commit: # ignite-648: fix compilation Date: Fri, 10 Jul 2015 11:26:29 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-ignite Updated Branches: refs/heads/ignite-648 01410fa92 -> 9c96a2f06 # ignite-648: fix compilation Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/9c96a2f0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/9c96a2f0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/9c96a2f0 Branch: refs/heads/ignite-648 Commit: 9c96a2f06e58fca2adcf69437ae4b736f304f651 Parents: 01410fa Author: ashutak Authored: Fri Jul 10 14:26:30 2015 +0300 Committer: ashutak Committed: Fri Jul 10 14:26:30 2015 +0300 ---------------------------------------------------------------------- .../junits/multijvm/IgniteCacheProcessProxy.java | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/9c96a2f0/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java b/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java index b9b2d6a..b15b6ef 100644 --- a/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java +++ b/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java @@ -514,6 +514,15 @@ public class IgniteCacheProcessProxy implements IgniteCache { } /** {@inheritDoc} */ + @Override public void destroy() { + compute.run(new IgniteRunnable() { + @Override public void run() { + cache().destroy(); + } + }); + } + + /** {@inheritDoc} */ @Override public boolean isClosed() { return (boolean)compute.call(new IgniteCallable() { @Override public Object call() throws Exception {