Przeglądaj źródła

AMBARI-1584. Stack Upgrade Wizard - integrate host progress popup. (yusaku)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1454187 13f79535-47bb-0310-9956-ffa450edef68
Yusaku Sako 12 lat temu
rodzic
commit
f0856989c8

+ 3 - 0
CHANGES.txt

@@ -105,6 +105,9 @@ Trunk (unreleased changes):
 
  IMPROVEMENTS
 
+ AMBARI-1584. Stack Upgrade Wizard - integrate host progress popup.
+ (yusaku)
+
  AMBARI-1581. Host progress popup - generic component for showing progress
  on async operations. (yusaku)
 

+ 2 - 1
ambari-web/app/views/wizard/stack_upgrade/step3_view.js

@@ -102,8 +102,9 @@ App.StackUpgradeStep3View = Em.View.extend({
      * @param event
      */
     hostsLogPopup: function(event){
-      //TODO show popup with hosts
       var serviceName = event.contexts[0];
+      var controller = this.get("controller");
+      App.HostPopup.initPopup(serviceName, controller);
     }
   })
 });