mirror of
https://github.com/coredns/coredns.git
synced 2025-11-01 10:43:17 -04:00
Make middleware survive a restart (#142)
Make middleware that sets up a (http) handler survive a graceful restart. We calls the middleware's Shutdown function(s). If restart fails the Start function is called again. * middleware/health: OK * middleware/pprof: OK * middleware/metrics: OK All restart OK.
This commit is contained in:
@@ -11,8 +11,9 @@ func Health(c *Controller) (middleware.Middleware, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
h := health.Health{Addr: addr}
|
||||
c.Startup = append(c.Startup, h.ListenAndServe)
|
||||
h := &health.Health{Addr: addr}
|
||||
c.Startup = append(c.Startup, h.Start)
|
||||
c.Shutdown = append(c.Shutdown, h.Shutdown)
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user