Don't wait for shutdown of scheduler

This commit is contained in:
Ruud
2013-11-30 12:51:35 +01:00
parent 8b2cd62211
commit 54af80d5ad

View File

@@ -37,7 +37,7 @@ class Scheduler(Plugin):
def stop(self):
if self.started:
log.debug('Stopping scheduler')
self.sched.shutdown()
self.sched.shutdown(wait = False)
log.debug('Scheduler stopped')
self.started = False