Only stop log parser if it's actually running
This commit is contained in:
parent
3cf573baf6
commit
9e806d30f9
|
@ -73,6 +73,7 @@ class DomainConsoleWatcherInstance(object):
|
||||||
|
|
||||||
# Stop execution thread
|
# Stop execution thread
|
||||||
def stop(self):
|
def stop(self):
|
||||||
|
if self.thread and self.thread.isAlive():
|
||||||
self.logger.out('Stopping VM log parser', state='i', prefix='Domain {}:'.format(self.domuuid))
|
self.logger.out('Stopping VM log parser', state='i', prefix='Domain {}:'.format(self.domuuid))
|
||||||
self.thread_stopper.set()
|
self.thread_stopper.set()
|
||||||
# Do one final flush
|
# Do one final flush
|
||||||
|
|
Loading…
Reference in New Issue