From commits-return-51097-archive-asf-public=cust-asf.ponee.io@ambari.apache.org Thu Jan 11 19:01:40 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 05A35180656 for ; Thu, 11 Jan 2018 19:01:40 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E829E160C23; Thu, 11 Jan 2018 18:01:39 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 362D3160C13 for ; Thu, 11 Jan 2018 19:01:39 +0100 (CET) Received: (qmail 14598 invoked by uid 500); 11 Jan 2018 18:01:38 -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 14589 invoked by uid 99); 11 Jan 2018 18:01:38 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Jan 2018 18:01:38 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 59CE58213D; Thu, 11 Jan 2018 18:01:37 +0000 (UTC) Date: Thu, 11 Jan 2018 18:01:37 +0000 To: "commits@ambari.apache.org" Subject: [ambari] branch branch-2.6 updated: AMBARI-22718. ADDENDUM Cannot set security.inter.broker.protocol: SASL_SSL via Blueprint with Kerberos (adoroszlai) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <151569369730.10103.2580578654778695855@gitbox.apache.org> From: adoroszlai@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: ambari X-Git-Refname: refs/heads/branch-2.6 X-Git-Reftype: branch X-Git-Oldrev: 680f737c944bf4e10c282266c0bb39e43074cec2 X-Git-Newrev: 2e059c17f03f176e6210519545fe109e5c5944e9 X-Git-Rev: 2e059c17f03f176e6210519545fe109e5c5944e9 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. adoroszlai pushed a commit to branch branch-2.6 in repository https://gitbox.apache.org/repos/asf/ambari.git The following commit(s) were added to refs/heads/branch-2.6 by this push: new 2e059c1 AMBARI-22718. ADDENDUM Cannot set security.inter.broker.protocol: SASL_SSL via Blueprint with Kerberos (adoroszlai) 2e059c1 is described below commit 2e059c17f03f176e6210519545fe109e5c5944e9 Author: Doroszlai, Attila AuthorDate: Thu Jan 11 12:27:24 2018 +0100 AMBARI-22718. ADDENDUM Cannot set security.inter.broker.protocol: SASL_SSL via Blueprint with Kerberos (adoroszlai) --- .../resources/common-services/KAFKA/0.8.1/package/scripts/params.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ambari-server/src/main/resources/common-services/KAFKA/0.8.1/package/scripts/params.py b/ambari-server/src/main/resources/common-services/KAFKA/0.8.1/package/scripts/params.py index 60e56cd..4ee46b4 100644 --- a/ambari-server/src/main/resources/common-services/KAFKA/0.8.1/package/scripts/params.py +++ b/ambari-server/src/main/resources/common-services/KAFKA/0.8.1/package/scripts/params.py @@ -162,10 +162,7 @@ if has_metric_collector: kerberos_security_enabled = config['configurations']['cluster-env']['security_enabled'] kafka_kerberos_enabled = (('security.inter.broker.protocol' in config['configurations']['kafka-broker']) and - ((config['configurations']['kafka-broker']['security.inter.broker.protocol'] in ("PLAINTEXTSASL", "SASL_PLAINTEXT")) or - ((config['configurations']['kafka-broker']['security.inter.broker.protocol'] == "SASL_SSL") and - check_stack_feature(StackFeature.KAFKA_EXTENDED_SASL_SUPPORT, stack_version_formatted)))) - + (config['configurations']['kafka-broker']['security.inter.broker.protocol'] in ("PLAINTEXTSASL", "SASL_PLAINTEXT", "SASL_SSL"))) kafka_other_sasl_enabled = not kerberos_security_enabled and check_stack_feature(StackFeature.KAFKA_LISTENERS, stack_version_formatted) and \ check_stack_feature(StackFeature.KAFKA_EXTENDED_SASL_SUPPORT, stack_version_formatted) and \ -- To stop receiving notification emails like this one, please contact ['"commits@ambari.apache.org" '].