smjn commented on PR #22284:
URL: https://github.com/apache/kafka/pull/22284#issuecomment-4449919401
## Manual testing
### Before DLQ logic
```
$ bin/kafka-topics.sh --bootstrap-server localhost:9092 --list
__consumer_offsets
t1
$ bin/kafka-features.sh --bootstrap-server localhost:9092 upgrade --feature
share.version=2
share.version was upgraded to 2.
$ bin/kafka-configs.sh --bootstrap-server localhost:9092 --alter
--add-config "share.auto.offset.reset=earliest" --entity-type groups
--entity-name gs1
Completed updating config for group gs1.
$ bin/kafka-configs.sh --bootstrap-server localhost:9092 --alter
--add-config "errors.deadletterqueue.topic.name=dlq.gs1dlqtopic" --entity-type
groups --entity-name gs1
```
### After logic kicks in
```
$ bin/kafka-topics.sh --bootstrap-server localhost:9092 --list
__consumer_offsets
__share_group_state
dlq.gs1dlqtopic
t1
```
--
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]