chickenchickenlove commented on code in PR #22245:
URL: https://github.com/apache/kafka/pull/22245#discussion_r3281621764
##########
group-coordinator/src/main/java/org/apache/kafka/coordinator/group/streams/StreamsGroup.java:
##########
@@ -442,6 +442,16 @@ public StreamsGroupMember staticMember(String instanceId) {
return existingMemberId == null ? null :
getMemberOrThrow(existingMemberId);
}
+ /**
+ * Gets a dynamic member.
+ *
+ * @param memberId The Member ID.
+ * @return The member corresponding to the given member ID or null if it
does not exist
+ */
+ public StreamsGroupMember dynamicMember(String memberId) {
Review Comment:
I removed this method because it is no longer needed.
--
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]