lucasbru commented on code in PR #22245:
URL: https://github.com/apache/kafka/pull/22245#discussion_r3272904140
##########
group-coordinator/src/main/java/org/apache/kafka/coordinator/group/GroupMetadataManager.java:
##########
@@ -8966,6 +9240,35 @@ private Map<String, String>
streamsGroupAssignmentConfigs(String groupId) {
));
}
+ private boolean hasUserEndpointChanged(StreamsGroupMember maybeOldMember,
StreamsGroupMember updatedMember) {
Review Comment:
this is equivalent to: return !Objects.equals(maybeOldMember == null ? null
: maybeOldMember.userEndpoint().orElse(null),
updatedMember.userEndpoint().orElse(null));
--
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]