RockteMQ-AI commented on issue #1397: URL: https://github.com/apache/rocketmq-dashboard/issues/1397#issuecomment-5236143789
**Issue Evaluation** Category: `bug` | Status: **Confirmed** The bug is valid. Timed-out Aliyun OpenAPI `CompletableFuture` instances are not cancelled, which can leak in-flight HTTP connections and threads. When the Aliyun SDK future times out on the caller side but the underlying HTTP request continues, resources accumulate over time. **Root Cause:** Missing `future.cancel(true)` or timeout-based cleanup for Aliyun OpenAPI calls. **Impact:** Resource leak (threads/connections) under sustained timeout conditions. **Severity:** Low-Medium — gradual resource accumulation, not an immediate crash. Cancelling timed-out futures with proper error propagation is the correct fix. --- *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]
