summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Kincl <kincljc@ornl.gov>2015-09-29 14:01:31 -0400
committerJason Kincl <kincljc@ornl.gov>2015-09-29 14:01:31 -0400
commit210204dd19f26e6f9bd1e1956dabe2ac817c7a86 (patch)
treef77c891071a9406c23faa8a7f7940db3b24b5384
parente0da9e328593198de6f9b02df79db0c66c42a2c0 (diff)
downloadbcfg2-210204dd19f26e6f9bd1e1956dabe2ac817c7a86.tar.gz
bcfg2-210204dd19f26e6f9bd1e1956dabe2ac817c7a86.tar.bz2
bcfg2-210204dd19f26e6f9bd1e1956dabe2ac817c7a86.zip
Run the superclass shutdown() to correctly set self.started
-rw-r--r--src/lib/Bcfg2/Server/FileMonitor/Inotify.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Server/FileMonitor/Inotify.py b/src/lib/Bcfg2/Server/FileMonitor/Inotify.py
index c4b34a469..8f6e136fd 100644
--- a/src/lib/Bcfg2/Server/FileMonitor/Inotify.py
+++ b/src/lib/Bcfg2/Server/FileMonitor/Inotify.py
@@ -214,6 +214,7 @@ class Inotify(Pseudo, pyinotify.ProcessEvent):
def shutdown(self):
if self.started and self.notifier:
self.notifier.stop()
+ Pseudo.shutdown(self)
shutdown.__doc__ = Pseudo.shutdown.__doc__
def list_watches(self):