diff options
Diffstat (limited to 'plugin/k8s_external')
-rw-r--r-- | plugin/k8s_external/external.go | 1 | ||||
-rw-r--r-- | plugin/k8s_external/external_test.go | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/plugin/k8s_external/external.go b/plugin/k8s_external/external.go index e56784ad7..442119bd0 100644 --- a/plugin/k8s_external/external.go +++ b/plugin/k8s_external/external.go @@ -7,7 +7,6 @@ NXDOMAIN depending on the state of the cluster. A plugin willing to provide these services must implement the Externaler interface, although it likely only makes sense for the *kubernetes* plugin. - */ package external diff --git a/plugin/k8s_external/external_test.go b/plugin/k8s_external/external_test.go index 9987c0e63..1e3630bdf 100644 --- a/plugin/k8s_external/external_test.go +++ b/plugin/k8s_external/external_test.go @@ -87,7 +87,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 { |