sadadw1 opened a new pull request, #682: URL: https://github.com/apache/ozhera/pull/682
### Ⅰ. Describe what this PR did The RocketMQ deploy document (EN + CN) pointed users to a class that does not exist: `run.mone.ozhera.operator.service.RocketMQSerivce` (misspelled class name + outdated `run.mone.` pre-Apache package prefix). The real class is `org.apache.ozhera.operator.service.RocketMQService`. This PR replaces all 4 occurrences (2 in `ozhera-deploy-document.md`, 2 in `ozhera-deploy-document_cn.md`) with the correct fully-qualified class name. ```diff - run.mone.ozhera.operator.service.RocketMQSerivce + org.apache.ozhera.operator.service.RocketMQService ``` ### Ⅱ. Does this pull request fix one issue? fixes #681 ### Ⅲ. Why don't you add test cases (unit test/integration test)? Documentation-only change; nothing to test. ### Ⅳ. Describe how to verify it Grep the deploy docs for `RocketMQSerivce` / `run.mone.ozhera.operator.service` and confirm none remain; confirm `org.apache.ozhera.operator.service.RocketMQService` matches the actual class in `ozhera-operator-service`. ### Ⅴ. Special notes for reviews The actual class is `org.apache.ozhera.operator.service.RocketMQService` (`public class RocketMQService` in package `org.apache.ozhera.operator.service`). -- 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]
