RockteMQ-AI commented on issue #10748: URL: https://github.com/apache/rocketmq/issues/10748#issuecomment-5156092751
**Issue Evaluation** Category: | Status: **Confirmed** The reported issue has been verified against the current codebase at commit . **Root Cause:** In (line 75–131), is created as an incomplete at line 76. The on handles four request codes, but the branch (lines 113–114) only executes , leaving permanently incomplete. Lines 124–130 then attach completion handlers to this never-completed future, so the returned never resolves. **Impact:** - One-way writes for unsupported codes hang indefinitely and never release their semaphore permit - Sync/async invocations cannot enter send-failure cleanup - Repeated unsupported one-way writes can exhaust the one-way semaphore (resource leak) **Severity:** High — indefinite future hang plus semaphore exhaustion in the proxy relay path. An automated fix proposal will be generated. Reply to proceed with PR generation. --- *Automated evaluation by * -- 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]
