This is an automated email from the ASF dual-hosted git repository.
AndrewJSchofield pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 4959a8de254 MINOR: Fix documentation for DLQ config (#23068)
4959a8de254 is described below
commit 4959a8de25422a64e8313d1fc666617120c746f8
Author: Sanskar Jhajharia <[email protected]>
AuthorDate: Mon Aug 3 14:32:00 2026 +0530
MINOR: Fix documentation for DLQ config (#23068)
`docs/operations/basic-kafka-operations.md` referred to the copy-record
DLQ config as `errors.deadletterqueue.copy.read.enable` in the prose,
while the actual dynamic group config (defined in `GroupConfig.java`) is
`errors.deadletterqueue.copy.record.enable` : the same name already used
correctly in the command example two lines below. The PR fixes the same.
---
docs/operations/basic-kafka-operations.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/operations/basic-kafka-operations.md
b/docs/operations/basic-kafka-operations.md
index 0e367205395..e04efc9d669 100644
--- a/docs/operations/basic-kafka-operations.md
+++ b/docs/operations/basic-kafka-operations.md
@@ -399,7 +399,7 @@ $ bin/kafka-configs.sh --bootstrap-server localhost:9092
--alter --add-config "e
Completed updating default config for brokers in the cluster.
```
-By default, the records written to the DLQ topic just include metadata about
the source records such as the topic, partition and offset. You can set the
`errors.deadletterqueue.copy.read.enable` configuration for the share group so
the source record key and value are copied to the DLQ topic.
+By default, the records written to the DLQ topic just include metadata about
the source records such as the topic, partition and offset. You can set the
`errors.deadletterqueue.copy.record.enable` configuration for the share group
so the source record key and value are copied to the DLQ topic.
```bash
$ bin/kafka-configs.sh --bootstrap-server localhost:9092 --alter --add-config
"errors.deadletterqueue.copy.record.enable=true" --entity-type groups
--entity-name my-share-group