Skip to content

Commit

Permalink
tests: disable leadership balancer in cg recovery test
Browse files Browse the repository at this point in the history
The consumer group recovery test doesn't do any validation if offset
listing was successful. Disabling leader balancer will make the test
more stable before we introduce validation in recovery tool (now the
tool assumes that user is going to review offsets listing).

Signed-off-by: Michal Maslanka <michal@redpanda.com>
  • Loading branch information
mmaslankaprv committed Jan 2, 2024
1 parent fea4f6a commit 3b2eac5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/rptest/tests/consumer_group_recovery_tool_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def __init__(self, test_ctx, *args, **kwargs):
# clear topics from the the kafka_nodelete_topics to allow for
# __consumer_offsets to be configured in this test.
"kafka_nodelete_topics": [],
"group_topic_partitions": self.initial_partition_count
"group_topic_partitions": self.initial_partition_count,
"enable_leader_balancer": False,
},
node_prealloc_count=1,
**kwargs)
Expand Down

0 comments on commit 3b2eac5

Please sign in to comment.