Age | Commit message (Collapse) | Author | Files | Lines |
|
Automatically submitted.
|
|
|
|
Signed-off-by: yeya24 <ben.ye@daocloud.io>
|
|
- see more details at https://github.com/infobloxopen/coredns-plugin-errors/pull/3
|
|
Remove panic/recover and also use pkg/log to print the error. This
brings some consistency into the logging.
Fixes #1776
|
|
Got a bit messed up with stb lib "context" usage.
|
|
* 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
|
|
* Rename middleware to plugin
first pass; mostly used 'sed', few spots where I manually changed
text.
This still builds a coredns binary.
* fmt error
* Rename AddMiddleware to AddPlugin
* Readd AddMiddleware to remain backwards compat
|