GerardGao commented on issue #13853: URL: https://github.com/apache/dubbo/issues/13853#issuecomment-5406830355
Hi, I've submitted PR #16436 to address this issue. The blocking `doConnect()` was still running inline on the shared framework connectivity scheduler (a residual of the original EventLoop issue after the scheduler refactor), which can starve reconnect tasks of other clients. The fix delegates the blocking connect to the per-client executor. The added test verifies the reconnect runs on the client executor thread and fails on the previous implementation. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
