Repository: ambari Updated Branches: refs/heads/trunk 78430140f -> 8f2032e59
AMBARI-11377. Kerberos: display warning that the user must create/distribute principals and keytabs. (rlevas via yusaku) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/8f2032e5 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/8f2032e5 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/8f2032e5 Branch: refs/heads/trunk Commit: 8f2032e59a910d4a9669949fb963971f96dd2f57 Parents: 7843014 Author: Yusaku Sako <[email protected]> Authored: Tue May 26 15:22:30 2015 -0700 Committer: Yusaku Sako <[email protected]> Committed: Tue May 26 15:22:30 2015 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/main/admin/kerberos.js | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/8f2032e5/ambari-web/app/controllers/main/admin/kerberos.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/main/admin/kerberos.js b/ambari-web/app/controllers/main/admin/kerberos.js index de61da5..bb5db84 100644 --- a/ambari-web/app/controllers/main/admin/kerberos.js +++ b/ambari-web/app/controllers/main/admin/kerberos.js @@ -385,6 +385,8 @@ App.MainAdminKerberosController = App.KerberosWizardStep4Controller.extend({ }, success: 'getSecurityTypeSuccess' }) + } else if (Em.typeOf(callback)=== 'function') { + callback(); } },
