diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-11-06 19:39:21 -0500 |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-11-06 19:39:21 -0500 |
commit | babaec0a07db0bd8f3f26019c93376308c0b47e4 (patch) | |
tree | 1be2e0e5b97d9050b23500100730d177965453ec /wallace | |
parent | e7a2c0756f991470945f3713404629075a67ee28 (diff) | |
download | pykolab-babaec0a07db0bd8f3f26019c93376308c0b47e4.tar.gz |
Don't explicitly terminate heartbeat process in sigterm handler (#3902)
Diffstat (limited to 'wallace')
-rw-r--r-- | wallace/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/wallace/__init__.py b/wallace/__init__.py index 8d43be2..fc11b62 100644 --- a/wallace/__init__.py +++ b/wallace/__init__.py @@ -330,8 +330,6 @@ class WallaceDaemon(object): pass def remove_pid(self, *args, **kw): - if hasattr(self, 'heartbeat'): - self.heartbeat.terminate() if os.access(conf.pidfile, os.R_OK): os.remove(conf.pidfile) raise SystemExit |