sadadw1 opened a new pull request, #680:
URL: https://github.com/apache/ozhera/pull/680

   ### Ⅰ. Describe what this PR did
   
   Renames the misspelled private field `rocketMQSerivce` → `rocketMQService` 
in `HeraResourceEventHandler` (the word `Service` was misspelled `Serivce`). 
Touches only the field declaration and its single usage.
   
   ```diff
   - private RocketMQService rocketMQSerivce;
   + private RocketMQService rocketMQService;
   ...
   - rocketMQSerivce.createTopic(nameserver);
   + rocketMQService.createTopic(nameserver);
   ```
   
   Naming-only change; the field is private with no public accessor, so no 
business logic or external API is affected.
   
   ### Ⅱ. Does this pull request fix one issue?
   
   fixes #679
   
   ### Ⅲ. Why don't you add test cases (unit test/integration test)?
   
   A private field rename with no behavior change; nothing observable to test.
   
   ### Ⅳ. Describe how to verify it
   
   Confirm the module still compiles (`mvn -q -pl 
ozhera-operator/ozhera-operator-service -am compile`) and that no `Serivce` 
token remains.
   
   ### Ⅴ. Special notes for reviews
   
   None.
   


-- 
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]

Reply via email to