mirror of
https://github.com/coredns/coredns.git
synced 2025-11-01 10:43:17 -04:00
Enforce go lint check and fix several lint issues (#570)
This fix updates the Makefile to add the `go lint` check for the build. This fix also fixes several go lint issues. NOTE: This fix does not enforce `go lint` (suggestion only). This fix also ignores the `go lint` error: ``` middleware/middleware.go:72:1: context.Context should be the first parameter of a function ``` as it requires too many changes in API. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
@@ -155,10 +155,10 @@ func (s *Server) Address() string { return s.Addr }
|
||||
// defined in the request so that the correct zone
|
||||
// (configuration and middleware stack) will handle the request.
|
||||
func (s *Server) ServeDNS(w dns.ResponseWriter, r *dns.Msg) {
|
||||
s.ServeDNSWithContext(context.Background(), w, r)
|
||||
s.serveDNSWithContext(context.Background(), w, r)
|
||||
}
|
||||
|
||||
func (s *Server) ServeDNSWithContext(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) {
|
||||
func (s *Server) serveDNSWithContext(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) {
|
||||
defer func() {
|
||||
// In case the user doesn't enable error middleware, we still
|
||||
// need to make sure that we stay alive up here
|
||||
|
||||
Reference in New Issue
Block a user