Author: justi9
Date: 2010-10-01 09:30:37 -0400 (Fri, 01 Oct 2010)
New Revision: 4365
Modified:
mgmt/newdata/mint/python/mint/main.py
Log:
Fix a crash in mint shutdown
Modified: mgmt/newdata/mint/python/mint/main.py
===================================================================
--- mgmt/newdata/mint/python/mint/main.py 2010-10-01 12:24:10 UTC (rev 4364)
+++ mgmt/newdata/mint/python/mint/main.py 2010-10-01 13:30:37 UTC (rev 4365)
@@ -69,11 +69,10 @@
def stop(self):
log.info("Stopping %s", self)
+ self.update_thread.stop()
+
self.session.stop()
- if self.update_enabled:
- self.update_thread.stop()
-
if self.expire_enabled:
self.expire_thread.stop()
Show replies by date