mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 00:04:15 -04:00
global: move to context (#1699)
* global: move to context Move from golang.org/x/net/context to std lib's context. Change done with: for i in $(grep -l '/context' **/*.go); do sed -e 's|golang.org/x/net/context|context|' -i $i; echo $i; done for i in **/*.go; do goimports -w $i; done * drop from dns.pb.go as well
This commit is contained in:
@@ -3,7 +3,7 @@ package metrics
|
||||
import (
|
||||
"github.com/coredns/coredns/plugin/metrics/vars"
|
||||
|
||||
"golang.org/x/net/context"
|
||||
"context"
|
||||
)
|
||||
|
||||
// WithServer returns the current server handling the request. It returns the
|
||||
|
||||
@@ -7,8 +7,9 @@ import (
|
||||
"github.com/coredns/coredns/plugin/pkg/rcode"
|
||||
"github.com/coredns/coredns/request"
|
||||
|
||||
"context"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
// ServeDNS implements the Handler interface.
|
||||
|
||||
@@ -8,8 +8,9 @@ import (
|
||||
"github.com/coredns/coredns/plugin/pkg/dnstest"
|
||||
"github.com/coredns/coredns/plugin/test"
|
||||
|
||||
"context"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
func TestMetrics(t *testing.T) {
|
||||
|
||||
@@ -6,8 +6,9 @@ import (
|
||||
"github.com/coredns/coredns/plugin"
|
||||
"github.com/coredns/coredns/request"
|
||||
|
||||
"context"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
// Report reports the metrics data associcated with request.
|
||||
|
||||
Reference in New Issue
Block a user