aboutsummaryrefslogtreecommitdiff
path: root/plugin/backend_lookup.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-09-22 15:12:02 +0100
committerGravatar GitHub <noreply@github.com> 2018-09-22 15:12:02 +0100
commit9546b606cb58a372361b39604c1ccf54ed91c7b9 (patch)
treedd218e883da9d27e34a76dc75407bccb3b32c938 /plugin/backend_lookup.go
parentb3d69f1c7f226805e7f70cfd0e88b488dc2eab1b (diff)
downloadcoredns-9546b606cb58a372361b39604c1ccf54ed91c7b9.tar.gz
coredns-9546b606cb58a372361b39604c1ccf54ed91c7b9.tar.zst
coredns-9546b606cb58a372361b39604c1ccf54ed91c7b9.zip
K8s remove string ops (#2119)
* plugin/kubernetes: remove bunch a string ops This removes a bunch of appends to where not needed, makes dnsutil.Join take variadic args which removes the need to wrap in a new string slice. Signed-off-by: Miek Gieben <miek@miek.nl> * Fix calls to dnsutil.Join Signed-off-by: Miek Gieben <miek@miek.nl> * Revert these Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to 'plugin/backend_lookup.go')
-rw-r--r--plugin/backend_lookup.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/backend_lookup.go b/plugin/backend_lookup.go
index 65cdcbaf5..77e08174f 100644
--- a/plugin/backend_lookup.go
+++ b/plugin/backend_lookup.go
@@ -446,7 +446,7 @@ func checkForApex(b ServiceBackend, zone string, state request.Request, opt Opti
// this is equivalent to the NS search code.
old := state.QName()
state.Clear()
- state.Req.Question[0].Name = dnsutil.Join([]string{"apex.dns", zone})
+ state.Req.Question[0].Name = dnsutil.Join("apex.dns", zone)
services, err := b.Services(state, false, opt)
if err == nil {