Browse Source

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

Alex Antonenko 10 years ago
parent
commit
7daa93945d
1 changed files with 3 additions and 1 deletions
  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
    */
   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');
     }
   },