OmniaGM commented on code in PR #14790: URL: https://github.com/apache/kafka/pull/14790#discussion_r1399559787
########## core/src/main/java/kafka/server/AssignmentsManager.java: ########## @@ -146,6 +153,9 @@ public void run() throws Exception { log.debug("Received new assignment {}", this); } pending.put(partition, this); + if (callback != null) { + callback.accept(DirectoryEventRequestState.QUEUED); + } Review Comment: I think the Dispatched state is the questionable one. We may not need it and we keep the reassignment queued until it it is completed -- 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