-
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
Question: possible bug in etcd clientv3 or misconfiguration?? #10288
Comments
@rugwirobaker please see #10249 (comment). If you can compile client locally and it runs then the issue is probably one for https://github.com/mitchellh/gox ? |
Further research points to a possible issue with your dependency management. Can you please make sure that all of your dependencies are properly filled? For instance ref: https://github.com/golang/dep/blob/master/docs/daily-dep.md |
It's probably a dependency management management problem cause even when I tried to build with |
My build just finished successfully. All I did was |
I hope I does work with govendor 2. |
I have been trying building a project in which I am importing (I am vendoring using dep):
- name = "go.etcd.io/etcd"
- version = "3.3.10"
This is the output for all the three platform builds using gox.
3 errors occurred:
--> linux/amd64 error: exit status 2
Stderr: # github.com/nanopack/shaman/vendor/google.golang.org/genproto/googleapis/rpc/status
vendor/google.golang.org/genproto/googleapis/rpc/status/status.pb.go:114:28: undefined: proto.InternalMessageInfo
--> darwin/amd64 error: exit status 2
Stderr: # github.com/nanopack/shaman/vendor/google.golang.org/genproto/googleapis/rpc/status
vendor/google.golang.org/genproto/googleapis/rpc/status/status.pb.go:114:28: undefined: proto.InternalMessageInfo
--> windows/amd64 error: exit status 2
Stderr: # github.com/nanopack/shaman/vendor/google.golang.org/genproto/googleapis/rpc/status
vendor/google.golang.org/genproto/googleapis/rpc/status/status.pb.go:114:28: undefined: proto.InternalMessageInfo
Is there something I am doing wrong?? All I am trying to do is to create an instance of the client using the example given by the README.
The text was updated successfully, but these errors were encountered: