Skip to content

Commit

Permalink
Disable concurrency in the AbstractConsumerSeekAwareTests
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Jul 15, 2024
1 parent 6f0737f commit f199334
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,12 @@ static class MultiGroupListener extends AbstractConsumerSeekAware {

static CountDownLatch latch2 = new CountDownLatch(2);

@KafkaListener(groupId = "group1", topics = TOPIC, concurrency = "2")
@KafkaListener(groupId = "group1", topics = TOPIC/*TODO until we figure out non-relevant partitions on assignment, concurrency = "2"*/)
void listenForGroup1(String in) {
latch1.countDown();
}

@KafkaListener(groupId = "group2", topics = TOPIC, concurrency = "2")
@KafkaListener(groupId = "group2", topics = TOPIC/*TODO until we figure out non-relevant partitions on assignment, concurrency = "2"*/)
void listenForGroup2(String in) {
latch2.countDown();
}
Expand Down

0 comments on commit f199334

Please sign in to comment.