Disable concurrency in the AbstractConsumerSeekAwareTests

This commit is contained in:
Artem Bilan
2024-07-15 16:48:21 -04:00
parent 6f0737fe0d
commit f199334961

View File

@@ -168,12 +168,12 @@ class AbstractConsumerSeekAwareTests {
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();
}