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 88508171E5 for ; Fri, 10 Jul 2015 07:51:28 +0000 (UTC) Received: (qmail 96961 invoked by uid 500); 10 Jul 2015 07:51:28 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 96925 invoked by uid 500); 10 Jul 2015 07:51:28 -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 96915 invoked by uid 99); 10 Jul 2015 07:51:28 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2015 07:51:28 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id E4E221A6C81 for ; Fri, 10 Jul 2015 07:51:27 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.791 X-Spam-Level: * X-Spam-Status: No, score=1.791 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id IHwSMQxdNk0T for ; Fri, 10 Jul 2015 07:51:20 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 1EEF54C0CA for ; Fri, 10 Jul 2015 07:51:20 +0000 (UTC) Received: (qmail 96713 invoked by uid 99); 10 Jul 2015 07:51:19 -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 07:51:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 978EEDFC78; Fri, 10 Jul 2015 07:51:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ivasilinets@apache.org To: commits@ignite.incubator.apache.org Date: Fri, 10 Jul 2015 07:51:19 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/9] incubator-ignite git commit: # ignite-gg-10416 Exclude lifecycleBeans for daemon node. Repository: incubator-ignite Updated Branches: refs/heads/ignite-964-1 acb56269c -> 91f18fb63 # ignite-gg-10416 Exclude lifecycleBeans for daemon node. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/8cc75fc5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/8cc75fc5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/8cc75fc5 Branch: refs/heads/ignite-964-1 Commit: 8cc75fc562706be8aebb837b708c03a9be264027 Parents: 0f1b31a Author: Andrey Authored: Wed Jul 8 10:50:16 2015 +0700 Committer: Andrey Committed: Wed Jul 8 10:50:16 2015 +0700 ---------------------------------------------------------------------- .../org/apache/ignite/visor/commands/open/VisorOpenCommand.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8cc75fc5/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/open/VisorOpenCommand.scala ---------------------------------------------------------------------- diff --git a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/open/VisorOpenCommand.scala b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/open/VisorOpenCommand.scala index 6498baf..632a96b 100644 --- a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/open/VisorOpenCommand.scala +++ b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/open/VisorOpenCommand.scala @@ -144,7 +144,7 @@ class VisorOpenCommand extends VisorConsoleCommand { try // Cache, IGFS, indexing SPI configurations should be excluded from daemon node config. spring.loadConfigurations(url, "cacheConfiguration", "fileSystemConfiguration", - "indexingSpi").get1() + "lifecycleBeans", "indexingSpi").get1() finally { if (log4jTup != null) U.removeLog4jNoOpLogger(log4jTup)