rondagostino commented on a change in pull request #10199: URL: https://github.com/apache/kafka/pull/10199#discussion_r583240514
########## File path: tests/kafkatest/services/security/security_config.py ########## @@ -343,6 +347,17 @@ def interbroker_sasl_mechanism(self): def enabled_sasl_mechanisms(self): return set([self.client_sasl_mechanism, self.interbroker_sasl_mechanism]) + @property + def usable_sasl_mechanisms(self): + """ + Differs from enabled_sasl_mechanisms in that it also includes SASL mechanisms that + are used for Raft communication + :return: enabled_sasl_mechanisms plus any mechanisms that are used for Raft communication + """ + retval = set([self.client_sasl_mechanism, self.interbroker_sasl_mechanism] + self.raft_sasl_mechanisms) + print(retval) Review comment: will revert ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org