aboutsummaryrefslogtreecommitdiff
path: root/middleware/pkg/debug/debug.go (follow)
AgeCommit message (Collapse)AuthorFilesLines
2017-09-12Remove debug queries (#1058)Gravatar Miek Gieben 1-21/+0
* Remove debug from interface and methods * remove debug queries from etcd * remove debug queries from k8s - they were not used * And remove from mw/proxy-google as well * Remove debug query test
2017-06-03pkg/debug: Update comment (#704)Gravatar Miek Gieben 1-1/+1
We already lowercase before comparing. Fixes #447
2016-12-20Add middleware.NextOrFailure (#462)Gravatar Miek Gieben 1-0/+1
This checks if the next middleware to be called is nil, and if so returns ServerFailure and an error. This makes the next calling more robust and saves some lines of code. Also prefix the error with the name of the middleware to aid in debugging.
2016-11-29middleware/httpproxy: add debug queries (#446)Gravatar Miek Gieben 1-0/+20
* middleware/httproxy: implement debug queries Not too useful at the moment, but o-o.debug queries are supported and return the Comment from dns.google.com. Note that this is not always set. * improve documentation * Testing cleanups