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 6E522200BEC for ; Thu, 29 Dec 2016 10:37:09 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 6D0B3160B15; Thu, 29 Dec 2016 09:37:09 +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 F137C160B40 for ; Thu, 29 Dec 2016 10:37:07 +0100 (CET) Received: (qmail 83887 invoked by uid 500); 29 Dec 2016 09:37:07 -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 82946 invoked by uid 99); 29 Dec 2016 09:37:06 -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; Thu, 29 Dec 2016 09:37:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 87105F2DEE; Thu, 29 Dec 2016 09:37:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agoncharuk@apache.org To: commits@ignite.apache.org Date: Thu, 29 Dec 2016 09:37:40 -0000 Message-Id: <2274447d1d4d4a42a3dad5c43d835708@git.apache.org> In-Reply-To: <9ed165a678e44bff8ed6ffb3e90a45ab@git.apache.org> References: <9ed165a678e44bff8ed6ffb3e90a45ab@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [36/50] [abbrv] ignite git commit: GG-11808 Implement deletion of snapshots on platform level archived-at: Thu, 29 Dec 2016 09:37:09 -0000 GG-11808 Implement deletion of snapshots on platform level Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8ba772f6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8ba772f6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8ba772f6 Branch: refs/heads/ignite-3477 Commit: 8ba772f6bef6c85bf733d40266ed8d3fc5bef9d3 Parents: 53b52da Author: EdShangGG Authored: Fri Dec 23 18:07:11 2016 +0300 Committer: EdShangGG Committed: Fri Dec 23 18:07:11 2016 +0300 ---------------------------------------------------------------------- .../pagemem/snapshot/StartFullSnapshotDiscoveryMessage.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/8ba772f6/modules/core/src/main/java/org/apache/ignite/internal/pagemem/snapshot/StartFullSnapshotDiscoveryMessage.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/pagemem/snapshot/StartFullSnapshotDiscoveryMessage.java b/modules/core/src/main/java/org/apache/ignite/internal/pagemem/snapshot/StartFullSnapshotDiscoveryMessage.java index 08e093d..b58c247 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/pagemem/snapshot/StartFullSnapshotDiscoveryMessage.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/pagemem/snapshot/StartFullSnapshotDiscoveryMessage.java @@ -127,7 +127,6 @@ public class StartFullSnapshotDiscoveryMessage implements DiscoveryCustomMessage /** {@inheritDoc} */ @Nullable @Override public DiscoveryCustomMessage ackMessage() { - System.out.println("StartFullSnapshotAckDiscoveryMessage - " + fullSnapshot); return new StartFullSnapshotAckDiscoveryMessage(globalSnapshotId, fullSnapshot, lastFullSnapshotIdForCache, cacheNames, err, initiatorId); } @@ -136,7 +135,10 @@ public class StartFullSnapshotDiscoveryMessage implements DiscoveryCustomMessage return true; } - public void fullSnapshot(boolean b) { - fullSnapshot = b; + /** + * @param full full snapshot. + */ + public void fullSnapshot(boolean full) { + fullSnapshot = full; } }