aboutsummaryrefslogtreecommitdiff
path: root/middleware/etcd/setup_test.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2017-01-15 08:12:58 +0000
committerGravatar GitHub <noreply@github.com> 2017-01-15 08:12:58 +0000
commit52e01264e8a5901209f83335aa96e091c93ced7e (patch)
tree433625011d8ce8f041147ec4ef171d55678be2be /middleware/etcd/setup_test.go
parenta6d232a622a2f83a5d5ea1d9d946da7f910a0f9e (diff)
downloadcoredns-52e01264e8a5901209f83335aa96e091c93ced7e.tar.gz
coredns-52e01264e8a5901209f83335aa96e091c93ced7e.tar.zst
coredns-52e01264e8a5901209f83335aa96e091c93ced7e.zip
middleware/proxy: implement Exchanger (#480)
By defining and using an proxy.Exchanger interface we make the proxy more generic and we can then fold back httproxy into proxy. This overrides #463 and #473 and should make futures extensions rather trivial * Add docs that talk about `protocol` and how to set it. * middleware/proxy: rename New to NewLookup It's used as a Lookup mechanism not as a completely new proxy, reflect that in the name. * Set maxfails to 3 by default when looking up names. Most of the changes have been copied from https://github.com/johnbelamaric/coredns/pull/1/files
Diffstat (limited to 'middleware/etcd/setup_test.go')
-rw-r--r--middleware/etcd/setup_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/middleware/etcd/setup_test.go b/middleware/etcd/setup_test.go
index 39b934a43..90b645eb0 100644
--- a/middleware/etcd/setup_test.go
+++ b/middleware/etcd/setup_test.go
@@ -12,9 +12,9 @@ import (
"github.com/miekg/coredns/middleware/etcd/msg"
"github.com/miekg/coredns/middleware/pkg/dnsrecorder"
"github.com/miekg/coredns/middleware/pkg/singleflight"
+ "github.com/miekg/coredns/middleware/pkg/tls"
"github.com/miekg/coredns/middleware/proxy"
"github.com/miekg/coredns/middleware/test"
- "github.com/miekg/coredns/middleware/pkg/tls"
etcdc "github.com/coreos/etcd/client"
"github.com/mholt/caddy"
@@ -33,7 +33,7 @@ func newEtcdMiddleware() *Etcd {
client, _ := newEtcdClient(endpoints, tlsc)
return &Etcd{
- Proxy: proxy.New([]string{"8.8.8.8:53"}),
+ Proxy: proxy.NewLookup([]string{"8.8.8.8:53"}),
PathPrefix: "skydns",
Ctx: context.Background(),
Inflight: &singleflight.Group{},