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 <[email protected]> Authored: Mon Jun 19 14:53:47 2017 +0700 Committer: vsisko <[email protected]> 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')
