AMBARI-13455. Ambari QE Deploy Test - Kerberos service check fails (akovalenko)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/2f7184af Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/2f7184af Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/2f7184af Branch: refs/heads/branch-dev-patch-upgrade Commit: 2f7184af40599922e1e23b0150cf9c9c9d78cfc3 Parents: e89a003 Author: Aleksandr Kovalenko <[email protected]> Authored: Fri Oct 16 18:17:25 2015 +0300 Committer: Aleksandr Kovalenko <[email protected]> Committed: Fri Oct 16 18:17:25 2015 +0300 ---------------------------------------------------------------------- .../app/controllers/main/admin/kerberos/wizard_controller.js | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/2f7184af/ambari-web/app/controllers/main/admin/kerberos/wizard_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/main/admin/kerberos/wizard_controller.js b/ambari-web/app/controllers/main/admin/kerberos/wizard_controller.js index e0e146a..cb7ae74 100644 --- a/ambari-web/app/controllers/main/admin/kerberos/wizard_controller.js +++ b/ambari-web/app/controllers/main/admin/kerberos/wizard_controller.js @@ -241,7 +241,13 @@ App.KerberosWizardController = App.WizardController.extend(App.InstallComponent, { type: 'sync', callback: function () { + var self = this; this.loadKerberosOption(); + if (App.get('supports.storeKDCCredentials')) { + credentialsUtils.isStorePersisted(App.get('clusterName')).then(function(isPersisted) { + self.set('content.secureStoragePersisted', isPersisted); + }); + } } } ],
