Make necessary changes wrt imports to compile against CoreDNS git HEAD

There is still a problem with the metrics plugin which needs to be
resolved
This commit is contained in:
Björn Busse 2021-02-10 23:45:14 +01:00
parent 3edbb44fa3
commit 83ff609001
2 changed files with 2 additions and 3 deletions

View File

@ -19,7 +19,7 @@ import (
"github.com/coredns/coredns/plugin/pkg/upstream"
"github.com/miekg/dns"
"gopkg.in/ldap.v3"
"github.com/go-ldap/ldap/v3"
)
type ldapRecord struct {

View File

@ -6,13 +6,12 @@ import (
"sync"
"time"
"github.com/coredns/caddy"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
"github.com/coredns/coredns/plugin/metrics"
clog "github.com/coredns/coredns/plugin/pkg/log"
"github.com/coredns/coredns/plugin/pkg/upstream"
"github.com/caddyserver/caddy"
)
const pluginName = "ldap"