Browse Source

AMBARI-2014. Install Wizard/Add Host Wizard Review page: local repo option is always displayed as "No", even when it is enabled. (yusaku)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1471771 13f79535-47bb-0310-9956-ffa450edef68
Yusaku Sako 12 years ago
parent
commit
0863e1b20d
2 changed files with 4 additions and 1 deletions
  1. 3 0
      CHANGES.txt
  2. 1 1
      ambari-web/app/controllers/wizard/step8_controller.js

+ 3 - 0
CHANGES.txt

@@ -789,6 +789,9 @@ Trunk (unreleased changes):
 
 
  BUG FIXES
  BUG FIXES
 
 
+ AMBARI-2014. Install Wizard/Add Host Wizard Review page: local repo option
+ is always displayed as "No", even when it is enabled. (yusaku)
+
  AMBARI-2019. Cannot decommission data node (ensure recommission also works).
  AMBARI-2019. Cannot decommission data node (ensure recommission also works).
  (swagle)
  (swagle)
  
  

+ 1 - 1
ambari-web/app/controllers/wizard/step8_controller.js

@@ -444,7 +444,7 @@ App.WizardStep8Controller = Em.Controller.extend({
     this.get('clusterInfo').pushObject(Ember.Object.create(totalHostsObj));
     this.get('clusterInfo').pushObject(Ember.Object.create(totalHostsObj));
 
 
     //repo
     //repo
-    var repoOption = this.get('content.installOption.localRepo');
+    var repoOption = this.get('content.installOptions.localRepo');
     var repoObj = this.rawContent.findProperty('config_name', 'Repo');
     var repoObj = this.rawContent.findProperty('config_name', 'Repo');
     if (repoOption) {
     if (repoOption) {
       repoObj.config_value = 'Yes';
       repoObj.config_value = 'Yes';