Merge pull request #148 from sxllwx/develop
Ftr: etcdv3 for registry
No related branches found
No related tags found
Showing
- go.mod 20 additions, 0 deletionsgo.mod
- go.sum 133 additions, 6 deletionsgo.sum
- registry/etcdv3/listener.go 88 additions, 0 deletionsregistry/etcdv3/listener.go
- registry/etcdv3/listener_test.go 71 additions, 0 deletionsregistry/etcdv3/listener_test.go
- registry/etcdv3/registry.go 326 additions, 0 deletionsregistry/etcdv3/registry.go
- registry/etcdv3/registry_test.go 112 additions, 0 deletionsregistry/etcdv3/registry_test.go
- remoting/etcdv3/client.go 480 additions, 0 deletionsremoting/etcdv3/client.go
- remoting/etcdv3/client_test.go 366 additions, 0 deletionsremoting/etcdv3/client_test.go
- remoting/etcdv3/facade.go 82 additions, 0 deletionsremoting/etcdv3/facade.go
- remoting/etcdv3/listener.go 217 additions, 0 deletionsremoting/etcdv3/listener.go
- remoting/etcdv3/listener_test.go 87 additions, 0 deletionsremoting/etcdv3/listener_test.go
... | ... | @@ -5,24 +5,44 @@ require ( |
github.com/aliyun/alibaba-cloud-sdk-go v0.0.0-20190802083043-4cd0c391755e // indirect | ||
github.com/apache/dubbo-go-hessian2 v1.2.5-0.20190731020727-1697039810c8 | ||
github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23 // indirect | ||
github.com/coreos/bbolt v1.3.3 // indirect | ||
github.com/coreos/etcd v3.3.13+incompatible | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect | ||
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/dubbogo/getty v1.2.2 | ||
github.com/dubbogo/gost v1.1.1 | ||
github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 // indirect | ||
github.com/go-errors/errors v1.0.1 // indirect | ||
github.com/gogo/protobuf v1.2.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect | ||
github.com/golang/mock v1.3.1 | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway v1.9.5 // indirect | ||
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect | ||
github.com/jonboulle/clockwork v0.1.0 // indirect | ||
github.com/lestrrat/go-envload v0.0.0-20180220120943-6ed08b54a570 // indirect | ||
github.com/lestrrat/go-file-rotatelogs v0.0.0-20180223000712-d3151e2a480f // indirect | ||
github.com/lestrrat/go-strftime v0.0.0-20180220042222-ba3bf9c1d042 // indirect | ||
github.com/magiconair/properties v1.8.1 | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/nacos-group/nacos-sdk-go v0.0.0-20190723125407-0242d42e3dbb | ||
github.com/pkg/errors v0.8.1 | ||
github.com/prometheus/client_golang v1.1.0 // indirect | ||
github.com/samuel/go-zookeeper v0.0.0-20180130194729-c4fab1ac1bec | ||
github.com/soheilhy/cmux v0.1.4 // indirect | ||
github.com/stretchr/testify v1.3.0 | ||
github.com/tebeka/strftime v0.1.3 // indirect | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect | ||
github.com/toolkits/concurrent v0.0.0-20150624120057-a4371d70e3e3 // indirect | ||
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect | ||
go.etcd.io/bbolt v1.3.3 // indirect | ||
go.etcd.io/etcd v3.3.13+incompatible | ||
go.uber.org/atomic v1.4.0 | ||
go.uber.org/zap v1.10.0 | ||
google.golang.org/grpc v1.22.1 | ||
gopkg.in/yaml.v2 v2.2.2 | ||
) |
This diff is collapsed.
registry/etcdv3/listener.go
0 → 100644
registry/etcdv3/listener_test.go
0 → 100644
registry/etcdv3/registry.go
0 → 100644
registry/etcdv3/registry_test.go
0 → 100644
remoting/etcdv3/client.go
0 → 100644
remoting/etcdv3/client_test.go
0 → 100644
remoting/etcdv3/facade.go
0 → 100644
remoting/etcdv3/listener.go
0 → 100644
remoting/etcdv3/listener_test.go
0 → 100644
Please register or sign in to comment