Fix AttributeError: 'NoneType' object has no attribute 'returncode'

Fix #976
pull/987/head
Julien Duponchelle 7 years ago
parent d2d5f003f8
commit 57cdef6b02
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -199,7 +199,7 @@ class Hypervisor(UBridgeHypervisor):
try:
yield from wait_for_process_termination(self._process, timeout=3)
except asyncio.TimeoutError:
if self._process.returncode is None:
if self._process and self._process.returncode is None:
log.warn("uBridge process {} is still running... killing it".format(self._process.pid))
try:
self._process.kill()

Loading…
Cancel
Save