aboutsummaryrefslogtreecommitdiff
path: root/plugin/loadbalance/handler.go (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-27Add weighted-round-robin policy to loadbalance plugin (#5662)Gravatar Gabor Dozsa 1-6/+7
* Add weighted-round-robin policy to loadbalance plugin Signed-off-by: Gabor Dozsa <gabor.dozsa@ibm.com>
2019-09-26fix mis-spelling (#3310)Gravatar xieyanker 1-2/+2
Signed-off-by: xieyanker <xjsisnice@gmail.com>
2018-04-22all: fix plugin import ordering (#1717)Gravatar Miek Gieben 1-2/+2
Got a bit messed up with stb lib "context" usage.
2018-04-20global: move to context (#1699)Gravatar Miek Gieben 1-1/+2
* 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
2017-09-14Remove the word middleware (#1067)Gravatar Miek Gieben 1-0/+23
* 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