RockteMQ-AI commented on issue #4880: URL: https://github.com/apache/rocketmq-dashboard/issues/4880#issuecomment-5771974810
**Issue Evaluation** Category: `bug` | Status: **Confirmed** The reported race condition is valid. When two concurrent sends hit a terminated session, the second sender sees an empty session ID (cleared by the 404 response) and skips re-initialization, incorrectly surfacing the error. **Root Cause:** Session ID check and re-initialization decision are not atomic; a concurrent 404 can clear the ID between the check and the re-init attempt. **Impact:** MCP client fails to reconnect when sessions terminate under concurrent load. **Severity:** Medium An automated fix proposal may 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]
