Skip to content

Commit

Permalink
MINOR: Fix --enable-autocommit flag in verifiable consumer (#7743)
Browse files Browse the repository at this point in the history
The --enable-autocommit argument is a flag. It does not take a parameter. This was broken in #7724.

Reviewers: Ismael Juma <[email protected]>, Manikumar Reddy <[email protected]>
  • Loading branch information
hachikuji authored Nov 23, 2019
1 parent b94c7f4 commit e057d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/kafkatest/services/verifiable_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def start_cmd(self, node):
cmd += " --assignment-strategy %s" % self.assignment_strategy

if self.enable_autocommit:
cmd += " --enable-autocommit %s" % self.enable_autocommit
cmd += " --enable-autocommit "

cmd += " --reset-policy %s --group-id %s --topic %s --broker-list %s --session-timeout %s" % \
(self.reset_policy, self.group_id, self.topic,
Expand Down

0 comments on commit e057d61

Please sign in to comment.