coredns/plugin/file/shutdown.go
Miek Gieben 4f3dc207a4
plugin/file: shutdown reload goroutine ()
* plugin/file: shutdown reload goroutine

Shutdown the z.Reload() routine (if started in the first place) on
shutdow and reload.

Fixes 

* Must be put in c.OnShutdown()

* up test coverage
2018-02-28 18:19:37 -08:00

9 lines
176 B
Go

package file
// OnShutdown shuts down any running go-routines for this zone.
func (z *Zone) OnShutdown() error {
if !z.NoReload {
z.reloadShutdown <- true
}
return nil
}