-
Notifications
You must be signed in to change notification settings - Fork 813
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
runtimevar/etcd: import go.etcd.io/etcd instead of github.com/coreos/etcd #429
Comments
Per @h8liu Here is an example of build failure trying to build the etcd repo with github.com/coreos/etcd import path: |
the current downside is that etcd has not officially released a version after they changed the import path.. so to support |
importing as |
Yea, I did try to use go.etcd.io/etcd at first, but it keeps pulling in the old coreos/etcd as well, and then I get compatibility errors:
master...vangent:etcd-rename shows the go.mod changes that result. I think we'd prefer to wait until there's an official etcd release with the new name, then we can switch to use it. |
Blocked on a version after 3.3.9: |
I tried again with 3.3.10, but got the same problems with coreos things getting pulled in. |
I tried go.etcd.io/etcd v3.3.10+incompatible // indirect got error
|
github.com/coreos/etcd has renamed to use package name go.etcd.io/etcd. They are two different packages, and hence some of the packages stops working with go get. could you change to import go.etcd.io/etcd? Thanks.
The text was updated successfully, but these errors were encountered: