lianetm commented on code in PR #16031:
URL: https://github.com/apache/kafka/pull/16031#discussion_r1624957099


##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/CommitRequestManager.java:
##########
@@ -827,26 +808,15 @@ abstract class RetriableRequestState extends RequestState 
{
          */
         abstract CompletableFuture<?> future();
 
-        /**
-         * Complete the request future with a TimeoutException if the request 
timeout has been
-         * reached, based on the provided current time.
-         */
-        void maybeExpire(long currentTimeMs) {
-            if (retryTimeoutExpired(currentTimeMs)) {
-                removeRequest();
-                isExpired = true;
-                future().completeExceptionally(new 
TimeoutException(requestDescription() +
-                    " could not complete before timeout expired."));
-            }
-        }
-
         /**
          * Build request with the given builder, including response handling 
logic.
          */
         NetworkClientDelegate.UnsentRequest 
buildRequestWithResponseHandling(final AbstractRequest.Builder<?> builder) {
             NetworkClientDelegate.UnsentRequest request = new 
NetworkClientDelegate.UnsentRequest(
                 builder,
-                coordinatorRequestManager.coordinator());
+                coordinatorRequestManager.coordinator(),
+                time.timer(requestTimeoutMs)
+            );
             request.whenComplete(
                 (response, throwable) -> {
                     long currentTimeMs = request.handler().completionTimeMs();

Review Comment:
   agree that it's confusing, but for the record, I guess the current in the 
name may come from the point of view that here's the moment a request 
completes, and we retrieve the completion time, so could I could see it as the 
current because of where it's called (but still +1 for better name, simply 
`completionTimeMs`, that btw aligns with the `handleClientResponse` func param 
where it's used right below)



-- 
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]

Reply via email to