fred-ro commented on code in PR #17086:
URL: https://github.com/apache/kafka/pull/17086#discussion_r1747432655
##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/AsyncKafkaConsumer.java:
##########
@@ -237,7 +237,7 @@ private void process(final
ConsumerRebalanceListenerCallbackNeededEvent event) {
private final int defaultApiTimeoutMs;
private final boolean autoCommitEnabled;
private volatile boolean closed = false;
- private final Optional<ClientTelemetryReporter> clientTelemetryReporter;
+ private Optional<ClientTelemetryReporter> clientTelemetryReporter =
Optional.empty();
Review Comment:
Fixed
##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/ClassicKafkaConsumer.java:
##########
@@ -189,7 +189,7 @@ public class ClassicKafkaConsumer<K, V> implements
ConsumerDelegate<K, V> {
this.metadata.bootstrap(addresses);
FetchMetricsManager fetchMetricsManager =
createFetchMetricsManager(metrics);
- FetchConfig fetchConfig = new FetchConfig(config);
+ FetchConfig fetchConfig = new FetchConfig(config);docker
Review Comment:
Oups, fixed
--
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]