You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ak...@apache.org on 2015/09/28 18:12:40 UTC

ambari git commit: AMBARI-13258. Kerberos Wizard: next button on Confirm Configuration doesn't work after page refresh (akovalenko)

Repository: ambari
Updated Branches:
  refs/heads/trunk f67543c40 -> a6ed3633d


AMBARI-13258. Kerberos Wizard: next button on Confirm Configuration doesn't work after page refresh (akovalenko)


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

Branch: refs/heads/trunk
Commit: a6ed3633de472ac9dfc159629eb0fefb8322cb33
Parents: f67543c
Author: Aleksandr Kovalenko <ak...@hortonworks.com>
Authored: Mon Sep 28 18:59:37 2015 +0300
Committer: Aleksandr Kovalenko <ak...@hortonworks.com>
Committed: Mon Sep 28 19:10:07 2015 +0300

----------------------------------------------------------------------
 ambari-web/app/routes/add_kerberos_routes.js | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/a6ed3633/ambari-web/app/routes/add_kerberos_routes.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/routes/add_kerberos_routes.js b/ambari-web/app/routes/add_kerberos_routes.js
index ab4752f..817f4ce 100644
--- a/ambari-web/app/routes/add_kerberos_routes.js
+++ b/ambari-web/app/routes/add_kerberos_routes.js
@@ -292,8 +292,6 @@ module.exports = App.WizardRoute.extend({
 
     next: function (router) {
       var kerberosWizardController = router.get('kerberosWizardController');
-      var kerberosWizardStep4Controller = router.get('kerberosWizardStep4Controller');
-      kerberosWizardController.saveServiceConfigProperties(kerberosWizardStep4Controller);
       kerberosWizardController.setDBProperties({
         tasksStatuses: null,
         tasksRequestIds: null
@@ -321,14 +319,11 @@ module.exports = App.WizardRoute.extend({
     back: Em.Router.transitionTo('step4'),
     next: function (router) {
       var kerberosWizardController = router.get('kerberosWizardController');
-      var callback = function () {
-        kerberosWizardController.setDBProperties({
-          tasksStatuses: null,
-          tasksRequestIds: null
-        });
-        router.transitionTo('step7');
-      };
-      callback();
+      kerberosWizardController.setDBProperties({
+        tasksStatuses: null,
+        tasksRequestIds: null
+      });
+      router.transitionTo('step7');
     }
   }),