lucasbru commented on code in PR #19560: URL: https://github.com/apache/kafka/pull/19560#discussion_r2063092912
########## tests/kafkatest/services/kafka/kafka.py: ########## @@ -778,7 +781,14 @@ def prop_file(self, node): if self.use_share_groups is not None and self.use_share_groups is True: override_configs[config_property.SHARE_GROUP_ENABLE] = str(self.use_share_groups) - override_configs[config_property.GROUP_COORDINATOR_REBALANCE_PROTOCOLS] = 'classic,consumer,share' + if self.use_streams_groups is True: + override_configs[config_property.UNSTABLE_API_VERSIONS_ENABLE] = str(True) + override_configs[config_property.GROUP_COORDINATOR_REBALANCE_PROTOCOLS] = 'classic,consumer,share,streams' + else: + override_configs[config_property.GROUP_COORDINATOR_REBALANCE_PROTOCOLS] = 'classic,consumer,share' + elif self.use_streams_groups is True: + override_configs[config_property.UNSTABLE_API_VERSIONS_ENABLE] = str(True) + override_configs[config_property.GROUP_COORDINATOR_REBALANCE_PROTOCOLS] = 'classic,consumer,streams' Review Comment: Done -- 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. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org