Fix etcd to use v3.5.0-alpha.0 (#4628)

Signed-off-by: Jason Du <xdu@infoblox.com>
This commit is contained in:
Jason Du
2021-05-14 23:55:01 -07:00
committed by GitHub
parent ef0feaed31
commit d1f520a5b2
5 changed files with 43 additions and 14 deletions

View File

@@ -16,8 +16,8 @@ import (
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
etcdcv3 "go.etcd.io/etcd/clientv3"
"go.etcd.io/etcd/mvcc/mvccpb"
"go.etcd.io/etcd/api/v3/mvccpb"
etcdcv3 "go.etcd.io/etcd/client/v3"
)
const (

View File

@@ -9,7 +9,7 @@ import (
mwtls "github.com/coredns/coredns/plugin/pkg/tls"
"github.com/coredns/coredns/plugin/pkg/upstream"
etcdcv3 "go.etcd.io/etcd/clientv3"
etcdcv3 "go.etcd.io/etcd/client/v3"
)
func init() { plugin.Register("etcd", setup) }