Repository: ambari Updated Branches: refs/heads/trunk 9a245cbc4 -> 8d6756eb8
AMBARI-5634. Some components of Storm were not started after added of Nagios and Ganglia. (akovalenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/8d6756eb Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/8d6756eb Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/8d6756eb Branch: refs/heads/trunk Commit: 8d6756eb83c9233f7b3b8832f62597492607f5f6 Parents: 9a245cb Author: Aleksandr Kovalenko <[email protected]> Authored: Wed Apr 30 15:57:03 2014 +0300 Committer: Aleksandr Kovalenko <[email protected]> Committed: Wed Apr 30 16:02:56 2014 +0300 ---------------------------------------------------------------------- ambari-web/app/models/service_config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/8d6756eb/ambari-web/app/models/service_config.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/models/service_config.js b/ambari-web/app/models/service_config.js index 6a1645d..fd88e20 100644 --- a/ambari-web/app/models/service_config.js +++ b/ambari-web/app/models/service_config.js @@ -616,9 +616,9 @@ App.ServiceConfigProperty = Ember.Object.extend({ } else { var mPoint = allMountPoints[0].mountpoint; if (mPoint === "/") { - mPoint = this.get('defaultDirectory') + "\n"; + mPoint = this.get('defaultDirectory'); } else { - mPoint = mPoint + this.get('defaultDirectory') + "\n"; + mPoint = mPoint + this.get('defaultDirectory'); } this.set('value', mPoint); this.set('defaultValue', mPoint);
