liushiqi1001 opened a new pull request, #2918: URL: https://github.com/apache/dubbo-go/pull/2918
## Description Fix critical bug in blacklist refresh logic where wrong invoker was being removed. ## Problem - Code checked `ivks[j].IsAvailable()` but removed `ivks[i]` - Caused frequent incorrect blacklist operations and excessive logging ## Solution Change `RemoveInvokerUnhealthyStatus(ivks[i])` to `RemoveInvokerUnhealthyStatus(ivks[j])` ## Impact Eliminates incorrect blacklist operations and log spam. -- 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]
