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:
parent
c5df74eb56
commit
36309a4cf2
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user