MINOR: Fix log entry in FetchSessionHandler to specify throttle correctly (#8959)

Reviewers: David Jacot <djacot@confluent.io>, Manikumar Reddy <manikumar.reddy@gmail.com>, Colin P. McCabe <cmccabe@apache.org>
This commit is contained in:
Rajini Sivaram 2020-07-01 21:17:02 +01:00 committed by GitHub
parent efec315d0a
commit b8a99be784
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ public class FetchSessionHandler {
// fetch request is perfectly valid.
if (log.isDebugEnabled())
log.debug("Node {} sent an incremental fetch response with throttleTimeMs = {} " +
"for session {}{}", response.throttleTimeMs(), node, response.sessionId(),
"for session {}{}", node, response.throttleTimeMs(), response.sessionId(),
responseDataToLogString(response));
nextMetadata = nextMetadata.nextIncremental();
return true;