philipnee commented on code in PR #16686:
URL: https://github.com/apache/kafka/pull/16686#discussion_r1700585487
##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/AsyncKafkaConsumer.java:
##########
@@ -1227,6 +1227,7 @@ public void close(Duration timeout) {
private void close(Duration timeout, boolean swallowException) {
log.trace("Closing the Kafka consumer");
+ boolean wasInterrupted = Thread.interrupted();
Review Comment:
If the thread was interrupted before close, AddAndGet methods will throw an
interrupted exception, so we still need to call Thread.interrupted() on the
very top.
If the thread is interrupted during closing, we could catch that exception
and leave group as you said.
--
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]