RockteMQ-AI commented on issue #776: URL: https://github.com/apache/rocketmq-spring/issues/776#issuecomment-5235125414
**Issue Evaluation** Category: `bug` | Status: **Confirmed** The bug is clear: in `RocketMQMessageListenerBeanPostProcessor.buildEnhancer()`, the composed lambda returns the original `attrs` map instead of `newAttrs`, silently discarding all `AnnotationEnhancer` modifications. **Root Cause:** Copy-paste / variable reference error — `return attrs;` should be `return newAttrs;` **Impact:** All `AnnotationEnhancer` customizations (dynamic topic/consumerGroup overrides from environment) are silently ignored. **Severity:** Medium — functional but breaks a documented extension point. PR #775 addresses this correctly. --- *Automated evaluation by github-manager* -- 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]
