From: Richard Purdie Date: Sat, 21 Nov 2020 10:50:07 +0000 (+0000) Subject: oeqa/commands: Fix compatibility with python 3.9 X-Git-Tag: 2020-10.3-gatesgarth~59 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f101408bd43a5d41cb1710a7a848370292f84290;p=openembedded-core.git oeqa/commands: Fix compatibility with python 3.9 Python 3.9 dropped isAlive() so use the preferred is_alive(). Signed-off-by: Richard Purdie (cherry picked from commit 9bb06428cbb2ac0f3d98a1696f050d3393385503) Signed-off-by: Anuj Mittal --- diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index 8b3e12038d..a71c16ab14 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -125,11 +125,11 @@ class Command(object): def stop(self): for thread in self.threads: - if thread.isAlive(): + if thread.is_alive(): self.process.terminate() # let's give it more time to terminate gracefully before killing it thread.join(5) - if thread.isAlive(): + if thread.is_alive(): self.process.kill() thread.join()