RockteMQ-AI commented on issue #776: URL: https://github.com/apache/rocketmq-spring/issues/776#issuecomment-5529985795
**Issue Evaluation** Category: `type/bug` | Status: **Confirmed** The reported issue has been verified. In `RocketMQMessageListenerBeanPostProcessor.buildEnhancer()`, the composed lambda correctly accumulates modifications into `newAttrs` but then returns the original `attrs`, discarding all changes. **Root Cause:** `return attrs;` should be `return newAttrs;` at the end of the enhancer lambda **Impact:** All `AnnotationEnhancer` customizations are silently ignored **Severity:** High - breaks runtime annotation override functionality A fix has been submitted in PR #775. --- *Automated evaluation by RockteMQ-AI* -- 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]
