diff options
author | 2019-08-27 16:58:35 +0100 | |
---|---|---|
committer | 2019-08-27 16:58:35 +0100 | |
commit | efcc3758ddd186f1b1ae1394d936744b3b185af8 (patch) | |
tree | 7a2c960b2a39f6dbebbdc8fc449c571c860fd5dc /test | |
parent | 06b61a17c833cb3637ca044a8756e5a772d3ba73 (diff) | |
download | coredns-efcc3758ddd186f1b1ae1394d936744b3b185af8.tar.gz coredns-efcc3758ddd186f1b1ae1394d936744b3b185af8.tar.zst coredns-efcc3758ddd186f1b1ae1394d936744b3b185af8.zip |
plugin/etcd: fully move to go.etcd.io (#3215)
This is needed as well to make it compile cleanly. Follow up to #3214.
Manually removed github.com/coreos/etcd/ from go.mod
Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to 'test')
-rw-r--r-- | test/etcd_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/etcd_test.go b/test/etcd_test.go index 2ac165beb..f47c72065 100644 --- a/test/etcd_test.go +++ b/test/etcd_test.go @@ -11,8 +11,8 @@ import ( "github.com/coredns/coredns/plugin/etcd" "github.com/coredns/coredns/plugin/etcd/msg" - etcdcv3 "github.com/coreos/etcd/clientv3" "github.com/miekg/dns" + etcdcv3 "go.etcd.io/etcd/clientv3" ) func etcdPlugin() *etcd.Etcd { |