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 1B288200CB1 for ; Fri, 9 Jun 2017 16:20:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 19D7F160BF3; Fri, 9 Jun 2017 14:20:41 +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 5C690160BEB for ; Fri, 9 Jun 2017 16:20:40 +0200 (CEST) Received: (qmail 60483 invoked by uid 500); 9 Jun 2017 14:20:39 -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 60397 invoked by uid 99); 9 Jun 2017 14:20:39 -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, 09 Jun 2017 14:20:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6E782E0667; Fri, 9 Jun 2017 14:20:39 +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: Fri, 09 Jun 2017 14:20:44 -0000 Message-Id: <8aa199c1207a4a7abfe55358523ae125@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [06/42] ignite git commit: IGNITE-5413. Ignite shouldn't expose nor send (clear-text) env variables to a 3rd endpoint archived-at: Fri, 09 Jun 2017 14:20:41 -0000 IGNITE-5413. Ignite shouldn't expose nor send (clear-text) env variables to a 3rd endpoint Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/c3b89981 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/c3b89981 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/c3b89981 Branch: refs/heads/ignite-5267-merge-ea Commit: c3b899812c4df952767888b4493a614bba87b4fa Parents: 808ad9f Author: Konstantin Boudnik Authored: Mon Jun 5 19:47:02 2017 -0700 Committer: Konstantin Boudnik Committed: Tue Jun 6 11:06:52 2017 -0700 ---------------------------------------------------------------------- .../ignite/internal/processors/cluster/ClusterProcessor.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/c3b89981/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/ClusterProcessor.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/ClusterProcessor.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/ClusterProcessor.java index 075fb06..542ee43 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/ClusterProcessor.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/ClusterProcessor.java @@ -62,7 +62,7 @@ public class ClusterProcessor extends GridProcessorAdapter { private IgniteClusterImpl cluster; /** */ - private final AtomicBoolean notifyEnabled = new AtomicBoolean(); + private final AtomicBoolean notifyEnabled = new AtomicBoolean(false); /** */ @GridToStringExclude @@ -78,9 +78,6 @@ public class ClusterProcessor extends GridProcessorAdapter { public ClusterProcessor(GridKernalContext ctx) { super(ctx); - notifyEnabled.set(IgniteSystemProperties.getBoolean(IGNITE_UPDATE_NOTIFIER, - Boolean.parseBoolean(IgniteProperties.get("ignite.update.notifier.enabled.by.default")))); - cluster = new IgniteClusterImpl(ctx); }