You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by yu...@apache.org on 2013/04/18 06:47:51 UTC

svn commit: r1469158 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/controllers/wizard/step8_controller.js

Author: yusaku
Date: Thu Apr 18 04:47:50 2013
New Revision: 1469158

URL: http://svn.apache.org/r1469158
Log:
AMBARI-1963. Deploying progress bar shows 0 tasks after installation failure and going back to a previous step to retry. (yusaku)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1469158&r1=1469157&r2=1469158&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Thu Apr 18 04:47:50 2013
@@ -749,6 +749,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-1963. Deploying progress bar shows 0 tasks after installation failure
+ and going back to a previous step to retry. (yusaku)
+
  AMBARI-1962. Host Check popup keeps the "rerun check" button disabled even
  after it is done and its hard to know if its actually run or not. (yusaku)
 

Modified: incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js?rev=1469158&r1=1469157&r2=1469158&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js (original)
+++ incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js Thu Apr 18 04:47:50 2013
@@ -967,14 +967,14 @@ App.WizardStep8Controller = Em.Controlle
         success: 'deleteClustersSuccessCallback',
         error: 'deleteClustersErrorCallback'
       });
-    });
+    }, this);
   },
 
-  deleteClustersSuccessCallback: function(data, opt) {
-    console.log('DELETE cluster ' + opt.data.name + ' succeeded');
+  deleteClustersSuccessCallback: function(data, opt, params) {
+    console.log('DELETE cluster ' + params.name + ' succeeded');
   },
   deleteClustersErrorCallback: function(request, ajaxOptions, error, opt) {
-    console.log('DELETE cluster ' + opt.data.name + ' failed');
+    console.log('DELETE cluster failed');
   },
 
   /**