diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oeqa/utils/commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): | |||
| 125 | 125 | ||
| 126 | def stop(self): | 126 | def stop(self): |
| 127 | for thread in self.threads: | 127 | for thread in self.threads: |
| 128 | if thread.isAlive(): | 128 | if thread.is_alive(): |
| 129 | self.process.terminate() | 129 | self.process.terminate() |
| 130 | # let's give it more time to terminate gracefully before killing it | 130 | # let's give it more time to terminate gracefully before killing it |
| 131 | thread.join(5) | 131 | thread.join(5) |
| 132 | if thread.isAlive(): | 132 | if thread.is_alive(): |
| 133 | self.process.kill() | 133 | self.process.kill() |
| 134 | thread.join() | 134 | thread.join() |
| 135 | 135 | ||
