divijvaidya commented on code in PR #12590: URL: https://github.com/apache/kafka/pull/12590#discussion_r1057641795
########## clients/src/test/java/org/apache/kafka/clients/consumer/internals/FetcherTest.java: ########## @@ -5171,27 +5222,27 @@ private <K, V> void buildFetcher(MetricConfig metricConfig, SubscriptionState subscriptionState, LogContext logContext) { buildDependencies(metricConfig, metadataExpireMs, subscriptionState, logContext); - fetcher = new Fetcher<>( - new LogContext(), - consumerClient, - minBytes, - maxBytes, - maxWaitMs, - fetchSize, - maxPollRecords, - true, // check crc - "", - keyDeserializer, - valueDeserializer, - metadata, - subscriptions, - metrics, - metricsRegistry, - time, - retryBackoffMs, - requestTimeoutMs, - isolationLevel, - apiVersions); + fetcher = spy(new Fetcher<>( + new LogContext(), + consumerClient, + minBytes, Review Comment: Sorry, I did not understand this comment. Was your suggestion about the indentation of the next line? I have reverted it to original i.e. 8 space indent. -- 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