mirror of
https://github.com/coredns/coredns.git
synced 2025-11-26 21:54:03 -05: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:
@@ -13,8 +13,9 @@ import (
|
||||
"github.com/coredns/coredns/plugin/pkg/response"
|
||||
"github.com/coredns/coredns/request"
|
||||
|
||||
"context"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
// Logger is a basic request logging plugin.
|
||||
|
||||
@@ -10,8 +10,9 @@ import (
|
||||
"github.com/coredns/coredns/plugin/pkg/response"
|
||||
"github.com/coredns/coredns/plugin/test"
|
||||
|
||||
"context"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
func TestLoggedStatus(t *testing.T) {
|
||||
|
||||
@@ -94,16 +94,13 @@ func TestLogParse(t *testing.T) {
|
||||
}}},
|
||||
{`log {
|
||||
class abracadabra
|
||||
}`, true, []Rule{
|
||||
}},
|
||||
}`, true, []Rule{}},
|
||||
{`log {
|
||||
class
|
||||
}`, true, []Rule{
|
||||
}},
|
||||
}`, true, []Rule{}},
|
||||
{`log {
|
||||
unknown
|
||||
}`, true, []Rule{
|
||||
}},
|
||||
}`, true, []Rule{}},
|
||||
}
|
||||
for i, test := range tests {
|
||||
c := caddy.NewTestController("dns", test.inputLogRules)
|
||||
|
||||
Reference in New Issue
Block a user