varunv-cflt commented on code in PR #23174:
URL: https://github.com/apache/kafka/pull/23174#discussion_r3795227477
##########
group-coordinator/src/main/java/org/apache/kafka/coordinator/group/GroupMetadataManager.java:
##########
@@ -7706,6 +7706,15 @@ private CoordinatorResult<Void, CoordinatorRecord>
updateMemberThenRebalanceOrCo
String joinReason,
CompletableFuture<JoinGroupResponseData> responseFuture
) {
+ // A prior JoinGroup for this member may still be pending; complete it
before
+ // group.updateMember discards it, or it would never resolve on its
own.
+ if (member.isAwaitingJoin()) {
+ group.completeJoinFuture(member, new JoinGroupResponseData()
Review Comment:
Ack. I haven't considered this - It seems a good idea to complete the future
always inside `setAwaitingJoinFuture` and `setAwaitingSyncFuture`
Updated the code to handle this.
--
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]