dajac commented on code in PR #13870: URL: https://github.com/apache/kafka/pull/13870#discussion_r1264965443
########## group-coordinator/src/main/java/org/apache/kafka/coordinator/group/generic/GenericGroup.java: ########## @@ -561,7 +625,7 @@ public boolean hasReceivedSyncFromAllMembers() { * @return members that have yet to sync. */ public Set<String> allPendingSyncMembers() { - return pendingSyncMembers; + return new HashSet<>(pendingSyncMembers); Review Comment: This was not addressed. -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org