chia7712 commented on code in PR #17217:
URL: https://github.com/apache/kafka/pull/17217#discussion_r1866808314
##########
clients/src/test/java/org/apache/kafka/clients/consumer/internals/ConsumerNetworkClientTest.java:
##########
@@ -268,26 +269,40 @@ public void testMetadataFailurePropagated() {
public void testFutureCompletionOutsidePoll() throws Exception {
// Tests the scenario in which the request that is being awaited in
one thread
// is received and completed in another thread.
+
+ final CountDownLatch t1TheardCountDownLatch = new CountDownLatch(1);
+ final CountDownLatch t2ThreadCountDownLatch = new CountDownLatch(2);
final RequestFuture<ClientResponse> future = consumerClient.send(node,
heartbeat());
consumerClient.pollNoWakeup(); // dequeue and send the request
client.enableBlockingUntilWakeup(2);
- Thread t1 = new Thread(() -> consumerClient.pollNoWakeup());
+ Thread t1 = new Thread(() -> {
+ t1TheardCountDownLatch.countDown();
+ consumerClient.pollNoWakeup();
+ t2ThreadCountDownLatch.countDown();
Review Comment:
why do we release `t2ThreadCountDownLatch` here and line#305?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]