Skip to content

Commit 0548f1b

Browse files
KAFKA-19017: Changed consumer.config to command-config in verifiable_share_consumer.py (#19254)
In an earlier PR, the flag --consumer.config in VerifiableShareConsumer.java was changed to --command-config. This PR makes the same change when VerifiableShareConsumer is used in verifiable_share_consumer.py. Reviewers: Andrew Schofield <aschofield@confluent.io>
1 parent 121ec2a commit 0548f1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/kafkatest/services/verifiable_share_consumer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def start_cmd(self, node):
236236
if self.max_messages > 0:
237237
cmd += " --max-messages %s" % str(self.max_messages)
238238

239-
cmd += " --consumer.config %s" % VerifiableShareConsumer.CONFIG_FILE
239+
cmd += " --command-config %s" % VerifiableShareConsumer.CONFIG_FILE
240240
cmd += " 2>> %s | tee -a %s &" % (VerifiableShareConsumer.STDOUT_CAPTURE, VerifiableShareConsumer.STDOUT_CAPTURE)
241241
return cmd
242242

0 commit comments

Comments
 (0)