Return-Path: X-Original-To: apmail-ambari-commits-archive@www.apache.org Delivered-To: apmail-ambari-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DCC0F185D5 for ; Mon, 19 Oct 2015 13:53:58 +0000 (UTC) Received: (qmail 84880 invoked by uid 500); 19 Oct 2015 13:53:48 -0000 Delivered-To: apmail-ambari-commits-archive@ambari.apache.org Received: (qmail 84805 invoked by uid 500); 19 Oct 2015 13:53:48 -0000 Mailing-List: contact commits-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@ambari.apache.org Delivered-To: mailing list commits@ambari.apache.org Received: (qmail 83625 invoked by uid 99); 19 Oct 2015 13:53:48 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Oct 2015 13:53:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0E572E049D; Mon, 19 Oct 2015 13:53:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ncole@apache.org To: commits@ambari.apache.org Date: Mon, 19 Oct 2015 13:54:16 -0000 Message-Id: In-Reply-To: <66fcf29c5f8941b4b1404eabf60a2911@git.apache.org> References: <66fcf29c5f8941b4b1404eabf60a2911@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [30/50] [abbrv] ambari git commit: AMBARI-13455. Ambari QE Deploy Test - Kerberos service check fails (akovalenko) 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 Authored: Fri Oct 16 18:17:25 2015 +0300 Committer: Aleksandr Kovalenko 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); + }); + } } } ],