1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 10:11:17 +00:00

target/assistant: Fix logcat poller

Rename the `start` method to `run` as this is what is what is called
by the threading module's `start` method, otherwise this causes the
polling to be done in the main thread blocking execution.
This commit is contained in:
Marc Bonnici 2018-02-06 10:40:12 +00:00 committed by setrofim
parent c5df74eb56
commit 36309a4cf2

View File

@ -104,7 +104,7 @@ class LogcatPoller(threading.Thread):
self.daemon = True
self.exc = None
def start(self):
def run(self):
self.logger.debug('starting polling')
try:
while True: