diff options
author | 2018-01-07 16:32:59 +0000 | |
---|---|---|
committer | 2018-01-07 16:32:59 +0000 | |
commit | c6febe6250361eee580dbb8a601a444f23ed7ac2 (patch) | |
tree | ee81ab66cfa382d66bc085d31804efb8c1059af2 /plugin/etcd/multi_test.go | |
parent | 84ebbbc7225a8d7eb5e00c0c525f7e12932a9fe4 (diff) | |
download | coredns-c6febe6250361eee580dbb8a601a444f23ed7ac2.tar.gz coredns-c6febe6250361eee580dbb8a601a444f23ed7ac2.tar.zst coredns-c6febe6250361eee580dbb8a601a444f23ed7ac2.zip |
Add pkg/fall for Fallthrough (#1355)
* Add pkg/fall for Fallthrough
Move this into it's own package to facilitate tests. Important bug
was fixed: make the names fully qualified.
Add fall package to hosts, reverse, etcd, and fix kubernetes and any
tests. The k8s tests are still as-is, might need a future cleanup.
Diffstat (limited to 'plugin/etcd/multi_test.go')
-rw-r--r-- | plugin/etcd/multi_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/etcd/multi_test.go b/plugin/etcd/multi_test.go index 3ff423d7e..d58d22de0 100644 --- a/plugin/etcd/multi_test.go +++ b/plugin/etcd/multi_test.go @@ -7,6 +7,7 @@ import ( "github.com/coredns/coredns/plugin/etcd/msg" "github.com/coredns/coredns/plugin/pkg/dnstest" + "github.com/coredns/coredns/plugin/pkg/fall" "github.com/coredns/coredns/plugin/test" "github.com/miekg/dns" @@ -15,7 +16,7 @@ import ( func TestMultiLookup(t *testing.T) { etc := newEtcdPlugin() etc.Zones = []string{"skydns.test.", "miek.nl."} - etc.Fallthrough = true + etc.Fall = fall.New() etc.Next = test.ErrorHandler() for _, serv := range servicesMulti { |