sadadw1 opened a new issue, #681: URL: https://github.com/apache/ozhera/issues/681
### What happened? The RocketMQ deploy document (`readme/deploy/ozhera-deploy-document.md` and `readme/deploy/ozhera-deploy-document_cn.md`) tells users to look at a class that does not exist: > the `run.mone.ozhera.operator.service.RocketMQSerivce` class The actual class in `ozhera-operator` is `org.apache.ozhera.operator.service.RocketMQService` (see `ozhera-operator/ozhera-operator-service/.../service/RocketMQService.java`, `public class RocketMQService` in package `org.apache.ozhera.operator.service`). There are two problems in the doc reference: 1. The class name is misspelled `RocketMQSerivce` (should be `RocketMQService`). 2. The package prefix `run.mone.` is the pre-Apache namespace; the current package is `org.apache.ozhera.operator.service`. ### Impact Documentation-only. Users following the deploy guide cannot locate the referenced class, but no runtime/business logic is affected. ### Suggested fix Replace `run.mone.ozhera.operator.service.RocketMQSerivce` with `org.apache.ozhera.operator.service.RocketMQService` in both the EN and CN deploy documents (4 occurrences total). -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
