f1amingo opened a new pull request, #11130: URL: https://github.com/apache/rocketmq/pull/11130
### Which Issue(s) This PR Fixes - Fixes #11129 ### Brief Description The Lite pop processor creates its own ConsumerOrderInfoManager whose internal lock manager holds a non-daemon HashedWheelTimer, but the broker shutdown flow never shuts it down — the existing consumerOrderInfoManager.shutdown() call covers a different instance. This adds the missing shutdown call so the timer is stopped on broker exit. ### How Did You Test This Change? - Compiled the broker module successfully (mvn -pl broker -am install). - Manually traced the shutdown chain: BrokerController -> popLiteMessageProcessor.getConsumerOrderInfoManager().shutdown() -> QueueLevelConsumerOrderInfoLockManager.shutdown() -> timer.stop(). -- 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]
