Skip to content

Commit

Permalink
Set Kafka group.initial.rebalance.delay.ms to 0 in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Edgar <[email protected]>
  • Loading branch information
MikeEdgar committed Nov 12, 2024
1 parent 03603ad commit 72ca3f8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,10 @@ private KafkaContainer deployStrimziKafka() {
.withLabels(TEST_CONTAINER_LABELS)
.withLogConsumer(new Slf4jLogConsumer(LoggerFactory.getLogger("systemtests.plain-kafka"), true))
.withCreateContainerCmdModifier(cmd -> cmd.withName(name("plain-kafka")))
.withKafkaConfigurationMap(Map.of("auto.create.topics.enable", "false"))
.withKafkaConfigurationMap(Map.of(
"auto.create.topics.enable", "false",
"group.initial.rebalance.delay.ms", "0"
))
.withNetwork(testNetwork);

container.start();
Expand Down

0 comments on commit 72ca3f8

Please sign in to comment.