cmccabe commented on a change in pull request #10105: URL: https://github.com/apache/kafka/pull/10105#discussion_r580486218
########## File path: tests/kafkatest/tests/client/client_compatibility_produce_consume_test.py ########## @@ -46,13 +47,16 @@ def __init__(self, test_context): self.num_consumers = 1 def setUp(self): - self.zk.start() + if self.zk: + self.zk.start() def min_cluster_size(self): # Override this since we're adding services outside of the constructor return super(ClientCompatibilityProduceConsumeTest, self).min_cluster_size() + self.num_producers + self.num_consumers - @parametrize(broker_version=str(DEV_BRANCH)) + @cluster(num_nodes=9) + @matrix(broker_version=[str(DEV_BRANCH)], metadata_quorum=quorum.all_non_upgrade) + @cluster(num_nodes=9) Review comment: `@cluster` is repeated again ---------------------------------------------------------------- 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