-
Notifications
You must be signed in to change notification settings - Fork 20
Closed
Labels
fixed-present-in-next-releaseBug or improvement that's done, it is in the development branch but yet unreleasedBug or improvement that's done, it is in the development branch but yet unreleased
Description
const kafka = new Kafka({
kafkaJS: {
brokers: ["localhost:9092"]
}
});
const consumer = kafka.consumer({
kafkaJS: {groupId: GROUP_ID}
});
await consumer.connect();
Results in the following log entries, even though I have clearly not specified retry.backoff.ms
or retry.backoff.max.ms
.
{
message: '[thrd:app]: Configuration property retry.backoff.ms is a producer property and will be ignored by this consumer instance',
fac: 'CONFWARN',
timestamp: 1715289786815
}
{
message: '[thrd:app]: Configuration property retry.backoff.max.ms is a producer property and will be ignored by this consumer instance',
fac: 'CONFWARN',
timestamp: 1715289786816
}
Metadata
Metadata
Assignees
Labels
fixed-present-in-next-releaseBug or improvement that's done, it is in the development branch but yet unreleasedBug or improvement that's done, it is in the development branch but yet unreleased