-
Notifications
You must be signed in to change notification settings - Fork 9.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clientv3 can't be compiled with latest gRPC change #5561
Comments
For the sake of completeness, I'll note the reason the code does that is so grpc won't queue the Close and keep some reconnection goroutine running (making the leak detector complain). Hopefully removing it won't cause any headaches... |
I've also faced this issue while getting v3client
Do we have any workaround for this? |
part of commit - grpc/grpc-go@9c2d854#diff-e1550a73f5d25064c8b586ec68d81a64 they have created new structure called addrConn and moved State to getState and WaitForStateChange to waitForStateChange. So we might need to change the logic in the client file. |
Fixed by #5583 |
Currently we don't force users to use our gRPC dependencies, so this will happen.
I am creating this issue so we don't forget.
The text was updated successfully, but these errors were encountered: