aboutsummaryrefslogtreecommitdiff
path: root/plugin/file/shutdown.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-02-28 18:19:37 -0800
committerGravatar GitHub <noreply@github.com> 2018-02-28 18:19:37 -0800
commit4f3dc207a46a29edd0f36b9242ce59a6c7e104d0 (patch)
tree698274f29cd2a7f911d9bd363d5e92ee01c0c5db /plugin/file/shutdown.go
parent6bb08ffee446573c8f401160fa7830ffacca8530 (diff)
downloadcoredns-4f3dc207a46a29edd0f36b9242ce59a6c7e104d0.tar.gz
coredns-4f3dc207a46a29edd0f36b9242ce59a6c7e104d0.tar.zst
coredns-4f3dc207a46a29edd0f36b9242ce59a6c7e104d0.zip
plugin/file: shutdown reload goroutine (#1571)
* plugin/file: shutdown reload goroutine Shutdown the z.Reload() routine (if started in the first place) on shutdow and reload. Fixes #1508 * Must be put in c.OnShutdown() * up test coverage
Diffstat (limited to 'plugin/file/shutdown.go')
-rw-r--r--plugin/file/shutdown.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugin/file/shutdown.go b/plugin/file/shutdown.go
new file mode 100644
index 000000000..cecd76e9e
--- /dev/null
+++ b/plugin/file/shutdown.go
@@ -0,0 +1,9 @@
+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
+}