mirror of https://github.com/apache/kafka.git
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:
parent
efec315d0a
commit
b8a99be784
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue