Repository: ambari Updated Branches: refs/heads/branch-1.6.0 532898340 -> b4c141f7d
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/b4c141f7 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/b4c141f7 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/b4c141f7 Branch: refs/heads/branch-1.6.0 Commit: b4c141f7d4b260e5ef80021a3a5671fd071ff1e8 Parents: 5328983 Author: Aleksandr Kovalenko <[email protected]> Authored: Wed Apr 30 16:07:48 2014 +0300 Committer: Aleksandr Kovalenko <[email protected]> Committed: Wed Apr 30 16:07:48 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/b4c141f7/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);
