mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-12 07:59:04 +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.daemon = True
|
||||||
self.exc = None
|
self.exc = None
|
||||||
|
|
||||||
def start(self):
|
def run(self):
|
||||||
self.logger.debug('starting polling')
|
self.logger.debug('starting polling')
|
||||||
try:
|
try:
|
||||||
while True:
|
while True:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user