lianetm commented on code in PR #14364:
URL: https://github.com/apache/kafka/pull/14364#discussion_r1325999433
##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/DefaultBackgroundThread.java:
##########
@@ -168,28 +171,41 @@ public DefaultBackgroundThread(final Time time,
logContext);
CoordinatorRequestManager coordinatorRequestManager = null;
CommitRequestManager commitRequestManager = null;
+ HeartbeatRequestManager heartbeatRequestManager = null;
+ MembershipManager membershipManaber = null;
+ // TODO: consolidate groupState and memberState
if (groupState.groupId != null) {
coordinatorRequestManager = new CoordinatorRequestManager(
- this.time,
- logContext,
- retryBackoffMs,
- retryBackoffMaxMs,
- this.errorEventHandler,
- groupState.groupId);
+ this.time,
+ logContext,
+ retryBackoffMs,
+ retryBackoffMaxMs,
+ this.errorEventHandler,
+ groupState.groupId);
Review Comment:
Totally, but is there a reason why we couldn't use the MemberState here
already? I though that was the point of unblocking the state PR (to be able to
use it here)
--
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]