Преглед изворни кода

AMBARI-12167. Progress bar remains blue on deploy finish. Additional patch. (alexantonenko)

Alex Antonenko пре 10 година
родитељ
комит
7daa93945d
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      ambari-web/app/controllers/wizard/step9_controller.js

+ 3 - 1
ambari-web/app/controllers/wizard/step9_controller.js

@@ -613,7 +613,9 @@ App.WizardStep9Controller = Em.Controller.extend(App.ReloadPopupMixin, {
    * @method onSuccessPerHost
    * @method onSuccessPerHost
    */
    */
   onSuccessPerHost: function (actions, contentHost) {
   onSuccessPerHost: function (actions, contentHost) {
-    if (actions.everyProperty('Tasks.status', 'COMPLETED') && this.get('content.cluster.status') === 'INSTALLED') {
+    var status = this.get('content.cluster.status');
+    if (actions.everyProperty('Tasks.status', 'COMPLETED') && 
+        (status === 'INSTALLED' || status === 'STARTED') ) {
       contentHost.set('status', 'success');
       contentHost.set('status', 'success');
     }
     }
   },
   },