auto go fmt

Signed-off-by: coredns[bot] <bot@bot.coredns.io>
This commit is contained in:
coredns[bot] 2022-02-14 10:32:27 +00:00
parent fe9ba42590
commit b40f2a0a44
2 changed files with 2 additions and 4 deletions

View file

@ -470,12 +470,10 @@ func (k *Kubernetes) findServices(r recordRequest, zone string) (services []msg.
serviceList []*object.Service
)
idx := object.ServiceKey(r.service, r.namespace)
serviceList = k.APIConn.SvcIndex(idx)
endpointsListFunc = func() []*object.Endpoints { return k.APIConn.EpIndex(idx) }
zonePath := msg.Path(zone, coredns)
for _, svc := range serviceList {
if !(match(r.namespace, svc.Namespace) && match(r.service, svc.Name)) {