You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running go get github.com/micro/go-micro/v2 and go get google.golang.org/grpc on a fresh package without any other packages installed and on a fresh Go installation outputs this:
This is related to issue etcd-io/etcd#11563 and countless others, and it's been fixed in version 3.4.8 by etcd-io/etcd#11564 but Go Micro is importing version 3.3.18, which prevents me from using Google's gRPC version 1.30.0 that I need for unrelated reasons.
This could be solved by updating the etcd version this package uses to 3.4.8 or above.
How to reproduce the bug:
$ go mod init test
$ go get google.golang.org/grpc
$ go get github.com/micro/go-micro/v2
Describe the bug
Running
go get github.com/micro/go-micro/v2
andgo get google.golang.org/grpc
on a fresh package without any other packages installed and on a fresh Go installation outputs this:This is related to issue etcd-io/etcd#11563 and countless others, and it's been fixed in version 3.4.8 by etcd-io/etcd#11564 but Go Micro is importing version 3.3.18, which prevents me from using Google's gRPC version 1.30.0 that I need for unrelated reasons.
This could be solved by updating the etcd version this package uses to
3.4.8
or above.How to reproduce the bug:
Environment:
The text was updated successfully, but these errors were encountered: