SummCoder opened a new issue, #10500: URL: https://github.com/apache/rocketmq/issues/10500
### Search before creation - [x] I had searched in the [issues](https://github.com/apache/rocketmq/issues) and found no similar issues. ### Documentation Related The trace documentation (both English and Chinese) uses `new DefaultMQProducer("group", true)` and `new DefaultMQPushConsumer("group", true)` which no longer exist in 5.x. Verified against the source code: - DefaultMQProducer.java has no `(String, boolean)` constructor - DefaultMQPushConsumer.java has no `(String, boolean)` constructor The correct signatures are: - `new DefaultMQProducer("group", true, null)` - `new DefaultMQPushConsumer("group", true, null)` Affected files: - docs/cn/msg_trace/user_guide.md - docs/en/msg_trace/user_guide.md ### Are you willing to submit PR? - [x] Yes I am willing to submit a PR! -- 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]
