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 C9EEC200CC5 for ; Mon, 26 Jun 2017 08:48:57 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C8906160C06; Mon, 26 Jun 2017 06:48:57 +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 1790D160BF5 for ; Mon, 26 Jun 2017 08:48:56 +0200 (CEST) Received: (qmail 33150 invoked by uid 500); 26 Jun 2017 06:48:56 -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 33039 invoked by uid 99); 26 Jun 2017 06:48:56 -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; Mon, 26 Jun 2017 06:48:56 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3FE31E9669; Mon, 26 Jun 2017 06:48:55 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Mon, 26 Jun 2017 06:48:56 -0000 Message-Id: <9d4bd1cef2344bd4951077e6f8fd6326@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [02/25] ignite git commit: WEB-CONSOLE-2.1.1 Fixed variable name. archived-at: Mon, 26 Jun 2017 06:48:58 -0000 WEB-CONSOLE-2.1.1 Fixed variable name. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/7a3322c9 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/7a3322c9 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/7a3322c9 Branch: refs/heads/ignite-2.1.2-exchange Commit: 7a3322c9cb6947d9ba844464b1865f454d95d96f Parents: b9bbeb8 Author: vsisko Authored: Mon Jun 19 14:53:47 2017 +0700 Committer: vsisko Committed: Mon Jun 19 14:53:47 2017 +0700 ---------------------------------------------------------------------- modules/web-console/backend/app/mongo.js | 2 +- .../app/modules/configuration/generator/ConfigurationGenerator.js | 2 +- .../app/modules/states/configuration/clusters/persistence.pug | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/7a3322c9/modules/web-console/backend/app/mongo.js ---------------------------------------------------------------------- diff --git a/modules/web-console/backend/app/mongo.js b/modules/web-console/backend/app/mongo.js index 3cb9d53..32796e6 100644 --- a/modules/web-console/backend/app/mongo.js +++ b/modules/web-console/backend/app/mongo.js @@ -991,7 +991,7 @@ module.exports.factory = function(passportMongo, settings, pluginMongo, mongoose }, persistenceStoreConfiguration: { enabled: Boolean, - persistenceStorePath: String, + persistentStorePath: String, metricsEnabled: Boolean, alwaysWriteFullPages: Boolean, checkpointingFrequency: Number, http://git-wip-us.apache.org/repos/asf/ignite/blob/7a3322c9/modules/web-console/frontend/app/modules/configuration/generator/ConfigurationGenerator.js ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/modules/configuration/generator/ConfigurationGenerator.js b/modules/web-console/frontend/app/modules/configuration/generator/ConfigurationGenerator.js index d2471a2..a903ec4 100644 --- a/modules/web-console/frontend/app/modules/configuration/generator/ConfigurationGenerator.js +++ b/modules/web-console/frontend/app/modules/configuration/generator/ConfigurationGenerator.js @@ -1473,7 +1473,7 @@ export default class IgniteConfigurationGenerator { const bean = new Bean('org.apache.ignite.configuration.PersistentStoreConfiguration', 'PersistenceCfg', persistence, clusterDflts.persistenceStoreConfiguration); - bean.stringProperty('persistenceStorePath') + bean.stringProperty('persistentStorePath') .boolProperty('metricsEnabled') .boolProperty('alwaysWriteFullPages') .intProperty('checkpointingFrequency') http://git-wip-us.apache.org/repos/asf/ignite/blob/7a3322c9/modules/web-console/frontend/app/modules/states/configuration/clusters/persistence.pug ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/modules/states/configuration/clusters/persistence.pug b/modules/web-console/frontend/app/modules/states/configuration/clusters/persistence.pug index e57f08d..7fd0966 100644 --- a/modules/web-console/frontend/app/modules/states/configuration/clusters/persistence.pug +++ b/modules/web-console/frontend/app/modules/states/configuration/clusters/persistence.pug @@ -34,7 +34,7 @@ include /app/helpers/jade/mixins .settings-row +checkbox('Enabled', enabled, '"PersistenceEnabled"', 'Flag indicating whether to configure persistent configuration') .settings-row - +text-enabled('Store path:', `${model}.persistenceStorePath`, '"PersistenceStorePath"', enabled, 'false', 'Input store path', + +text-enabled('Store path:', `${model}.persistentStorePath`, '"PersistenceStorePath"', enabled, 'false', 'Input store path', 'A path the root directory where the Persistent Store will persist data and indexes') .settings-row +checkbox-enabled('Metrics enabled', `${model}.metricsEnabled`, '"PersistenceMetricsEnabled"', enabled, 'Flag indicating whether persistence metrics collection is enabled')