checkAutoCommitIsDisabled
fails for kafka-clients
v3.7.0
#721
Labels
checkAutoCommitIsDisabled
fails for kafka-clients
v3.7.0
#721
When using PC with
kafka-clients
v3.7.0, PC fails while trying to determine whether the providedConsumer
has auto-commit enabled:Upon surface-level investigation, the failure is caused by https://issues.apache.org/jira/browse/KAFKA-15277.
KafkaConsumer
no longer holds acoordinator
field.Instead,
KafkaConsumer
now has aConsumerDelegate<K, V> delegate
field, which resolves to eitherLegacyKafkaConsumer
, orAsyncKafkaConsumer
.LegacyKafkaConsumer
still has acoordinator
field, butAsyncKafkaConsumer
does not.The text was updated successfully, but these errors were encountered: