You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by as...@apache.org on 2019/09/23 09:58:42 UTC

[ambari] branch branch-2.7 updated: [cherry pick] AMBARI-25381 Save button is enabled without any config changes for Kerberos service (#3084)

This is an automated email from the ASF dual-hosted git repository.

asnaik pushed a commit to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/branch-2.7 by this push:
     new cae6961  [cherry pick] AMBARI-25381 Save button is enabled without any config changes for Kerberos service (#3084)
cae6961 is described below

commit cae696191f9726ce6a97ab92e66be28944864bf1
Author: Asnaik HWX <as...@hortonworks.com>
AuthorDate: Mon Sep 23 15:28:35 2019 +0530

    [cherry pick] AMBARI-25381 Save button is enabled without any config changes for Kerberos service (#3084)
---
 ambari-web/app/models/configs/objects/service_config_property.js | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/ambari-web/app/models/configs/objects/service_config_property.js b/ambari-web/app/models/configs/objects/service_config_property.js
index 211eadc..933b8a2 100644
--- a/ambari-web/app/models/configs/objects/service_config_property.js
+++ b/ambari-web/app/models/configs/objects/service_config_property.js
@@ -346,9 +346,6 @@ App.ServiceConfigProperty = Em.Object.extend({
       isFinal = this.get('isFinal'),
       savedIsFinal = this.get('savedIsFinal');
 
-    if (this.get('name') === 'kdc_type') {
-      return App.router.get('mainAdminKerberosController.kdcTypesValues')[savedValue] !== value;
-    }
     // ignore precision difference for configs with type of `float` which value may ends with 0
     // e.g. between 0.4 and 0.40
     if (this.get('stackConfigProperty') && this.get('stackConfigProperty.valueAttributes.type') == 'float') {