You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by at...@apache.org on 2013/12/18 13:46:27 UTC

git commit: AMBARI-4102 Host components not showing up or manage'able. (atkach)

Updated Branches:
  refs/heads/trunk 7f726aec9 -> 13710eb2f


AMBARI-4102 Host components not showing up or manage'able. (atkach)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/13710eb2
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/13710eb2
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/13710eb2

Branch: refs/heads/trunk
Commit: 13710eb2f2791f2c820e8ef933f2737554962e1e
Parents: 7f726ae
Author: atkach <at...@hortonworks.com>
Authored: Wed Dec 18 14:46:21 2013 +0200
Committer: atkach <at...@hortonworks.com>
Committed: Wed Dec 18 14:46:21 2013 +0200

----------------------------------------------------------------------
 ambari-web/app/routes/installer.js | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/13710eb2/ambari-web/app/routes/installer.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/routes/installer.js b/ambari-web/app/routes/installer.js
index c8ddbf8..2caa17a 100644
--- a/ambari-web/app/routes/installer.js
+++ b/ambari-web/app/routes/installer.js
@@ -316,6 +316,9 @@ module.exports = Em.Route.extend({
       if (App.supports.hostOverridesInstaller) {
         installerController.saveServiceConfigGroups(wizardStep7Controller);
       }
+      if (App.Host.find().content.length) {
+        App.Host.find().clear();
+      }
       router.transitionTo('step8');
     }
   }),