RockteMQ-AI commented on issue #2701: URL: https://github.com/apache/rocketmq-dashboard/issues/2701#issuecomment-5455433661
**Issue Evaluation** Category: `bug` | Status: **Confirmed** The message send form parser treats commas as both property-record separators and valid text within values. A property like `location=Beijing,China` is incorrectly split into `location=Beijing` plus a malformed `China` entry, corrupting the value and blocking submission. **Root Cause:** Ambiguous parser contract — commas are used as both record delimiters and valid value characters. **Impact:** Message send UI; users cannot include commas in property values. **Severity:** Medium — data corruption in message properties, blocks legitimate use cases. The proposed scope (one-property-per-line contract + parser/page tests) correctly resolves the ambiguity. An automated fix proposal can be generated. Reply `/approve` to proceed with PR generation. --- *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]
