jsancio commented on code in PR #19644: URL: https://github.com/apache/kafka/pull/19644#discussion_r2084990240
########## tests/kafkatest/tests/core/reassign_partitions_test.py: ########## @@ -163,7 +163,8 @@ def test_reassign_partitions(self, bounce_brokers, reassign_from_offset_zero, me self.producer = VerifiableProducer(self.test_context, self.num_producers, self.kafka, self.topic, throughput=self.producer_throughput, - enable_idempotence=True, + # TODO Set this to True once KAFKA-18905 is fixed. + enable_idempotence=False, Review Comment: Let's remove the TODO. You can say something like: ```python # Once KAFKA-18905 is fixed, the idempotent producer should be enabled. ``` Similar comment applies to line 178. -- 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