diff options
Diffstat (limited to 'plugin/etcd/etcd.go')
-rw-r--r-- | plugin/etcd/etcd.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugin/etcd/etcd.go b/plugin/etcd/etcd.go index 9b37ee458..4734fe344 100644 --- a/plugin/etcd/etcd.go +++ b/plugin/etcd/etcd.go @@ -12,7 +12,6 @@ import ( "github.com/coredns/coredns/plugin" "github.com/coredns/coredns/plugin/etcd/msg" "github.com/coredns/coredns/plugin/pkg/fall" - "github.com/coredns/coredns/plugin/proxy" "github.com/coredns/coredns/request" "github.com/coredns/coredns/plugin/pkg/upstream" @@ -35,10 +34,9 @@ type Etcd struct { Fall fall.F Zones []string PathPrefix string - Upstream upstream.Upstream // Proxy for looking up names during the resolution process + Upstream *upstream.Upstream Client *etcdcv3.Client Ctx context.Context - Stubmap *map[string]proxy.Proxy // list of proxies for stub resolving. endpoints []string // Stored here as well, to aid in testing. } |