diff options
author | 2022-03-25 13:50:23 -0400 | |
---|---|---|
committer | 2022-03-25 13:50:23 -0400 | |
commit | 3df3147f8c6437064da64fab096bd4a4ec8ab61b (patch) | |
tree | 2252f77f686fdfbd7ff32c1fa16eb4ab786801e9 /plugin/k8s_external/external_test.go | |
parent | 27e18e72bc454026cf0ed8b82d87a9b6425a9f3e (diff) | |
download | coredns-3df3147f8c6437064da64fab096bd4a4ec8ab61b.tar.gz coredns-3df3147f8c6437064da64fab096bd4a4ec8ab61b.tar.zst coredns-3df3147f8c6437064da64fab096bd4a4ec8ab61b.zip |
plugin/k8s_external: Persist tc bit from lookup to client response (#4716)
* persist reponse tc bit from lookup to client
Signed-off-by: Chris O'Haver <cohaver@infoblox.com>
Diffstat (limited to 'plugin/k8s_external/external_test.go')
-rw-r--r-- | plugin/k8s_external/external_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/k8s_external/external_test.go b/plugin/k8s_external/external_test.go index cf8e0e61c..78600f65d 100644 --- a/plugin/k8s_external/external_test.go +++ b/plugin/k8s_external/external_test.go @@ -62,7 +62,7 @@ var tests = []test.Case{ { Qname: "svc1.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, Answer: []dns.RR{test.SRV("svc1.testns.example.com. 5 IN SRV 0 100 80 svc1.testns.example.com.")}, - Extra: []dns.RR{test.A("svc1.testns.example.com. 5 IN A 1.2.3.4")}, + Extra: []dns.RR{test.A("svc1.testns.example.com. 5 IN A 1.2.3.4")}, }, // SRV Service Not udp/tcp { |