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 2A28718AC8 for ; Thu, 17 Dec 2015 02:36:05 +0000 (UTC) Received: (qmail 9477 invoked by uid 500); 17 Dec 2015 02:36:05 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 9407 invoked by uid 500); 17 Dec 2015 02:36:05 -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 9297 invoked by uid 99); 17 Dec 2015 02:36:04 -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, 17 Dec 2015 02:36:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AA5B7DFC89; Thu, 17 Dec 2015 02:36:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: akuznetsov@apache.org To: commits@ignite.apache.org Date: Thu, 17 Dec 2015 02:36:05 -0000 Message-Id: <25a18bbdc1da459a802acd075821712f@git.apache.org> In-Reply-To: <516dbdf044634cdeb20a741ac6854a94@git.apache.org> References: <516dbdf044634cdeb20a741ac6854a94@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/5] ignite git commit: Added default value for IGNITE_UPDATE_NOTIFIER Added default value for IGNITE_UPDATE_NOTIFIER Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/ea64f3ab Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ea64f3ab Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ea64f3ab Branch: refs/heads/ignite-843-rc2 Commit: ea64f3abed69052f34bc743cb32903ab5051660c Parents: 58e6412 Author: Anton Vinogradov Authored: Wed Dec 16 15:18:58 2015 +0300 Committer: Anton Vinogradov Committed: Wed Dec 16 15:18:58 2015 +0300 ---------------------------------------------------------------------- modules/core/pom.xml | 5 +++++ .../src/main/java/org/apache/ignite/internal/IgniteKernal.java | 3 ++- modules/core/src/main/resources/ignite.properties | 1 + parent/pom.xml | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/ea64f3ab/modules/core/pom.xml ---------------------------------------------------------------------- diff --git a/modules/core/pom.xml b/modules/core/pom.xml index 065082d..c8702bd 100644 --- a/modules/core/pom.xml +++ b/modules/core/pom.xml @@ -331,6 +331,11 @@ + + + + + http://git-wip-us.apache.org/repos/asf/ignite/blob/ea64f3ab/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java b/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java index 0f781d6..e0503fa 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java @@ -745,7 +745,8 @@ public class IgniteKernal implements IgniteEx, IgniteMXBean, Externalizable { // Run background network diagnostics. GridDiagnostic.runBackgroundCheck(gridName, execSvc, log); - boolean notifyEnabled = IgniteSystemProperties.getBoolean(IGNITE_UPDATE_NOTIFIER, true); + boolean notifyEnabled = IgniteSystemProperties.getBoolean(IGNITE_UPDATE_NOTIFIER, + Boolean.parseBoolean(IgniteProperties.get("ignite.update.notifier.enabled.by.default"))); // Ack 3-rd party licenses location. if (log.isInfoEnabled() && cfg.getIgniteHome() != null) http://git-wip-us.apache.org/repos/asf/ignite/blob/ea64f3ab/modules/core/src/main/resources/ignite.properties ---------------------------------------------------------------------- diff --git a/modules/core/src/main/resources/ignite.properties b/modules/core/src/main/resources/ignite.properties index 073c9ab..866bbc9 100644 --- a/modules/core/src/main/resources/ignite.properties +++ b/modules/core/src/main/resources/ignite.properties @@ -20,3 +20,4 @@ ignite.build=0 ignite.revision=DEV ignite.rel.date=01011970 ignite.update.status.params=test=vfvfvskfkeievskjv +ignite.update.notifier.enabled.by.default=false http://git-wip-us.apache.org/repos/asf/ignite/blob/ea64f3ab/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 486fc0d..f665d40 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -43,6 +43,7 @@ git 2.5.4 -XDenableSunApiLintControl + true 5.12.0