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

ambari git commit: AMBARI-13063. KERBEROS service incompletely installed when manual option is selected (alexantonenko)

Repository: ambari
Updated Branches:
  refs/heads/trunk 1ec86cd83 -> 5a8c2a74b


AMBARI-13063. KERBEROS service incompletely installed when manual option is selected (alexantonenko)


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

Branch: refs/heads/trunk
Commit: 5a8c2a74b69712449ec92d73b78eb4232ffa0242
Parents: 1ec86cd
Author: Alex Antonenko <hi...@gmail.com>
Authored: Thu Sep 10 21:40:57 2015 +0300
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Thu Sep 10 22:14:13 2015 +0300

----------------------------------------------------------------------
 ambari-web/app/routes/add_kerberos_routes.js | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/5a8c2a74/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 8077e6d..9e10465 100644
--- a/ambari-web/app/routes/add_kerberos_routes.js
+++ b/ambari-web/app/routes/add_kerberos_routes.js
@@ -322,11 +322,7 @@ module.exports = App.WizardRoute.extend({
         });
         router.transitionTo('step7');
       };
-      if (!kerberosWizardController.get('skipClientInstall')) {
-        kerberosWizardController.createKerberosResources(callback);
-      } else {
-        callback();
-      }
+      callback();
     }
   }),