dajac commented on code in PR #14417: URL: https://github.com/apache/kafka/pull/14417#discussion_r1355171994
########## group-coordinator/src/main/java/org/apache/kafka/coordinator/group/runtime/CoordinatorRuntime.java: ########## @@ -709,6 +727,16 @@ public void complete(Throwable exception) { } } + @Override + public long enqueueTimeMs() { + return this.enqueueTimeMs; + } + + @Override + public void setEnqueueTimeMs(long enqueueTimeMs) { + this.enqueueTimeMs = enqueueTimeMs; + } Review Comment: We can refactor this in follow-up if 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org