1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 11:18:11 +00:00

Fix a rare crash when stopping qemu

Fix #821
This commit is contained in:
Julien Duponchelle 2016-12-12 09:16:29 +01:00
parent c4327ec74c
commit 508edf5cc5
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -972,6 +972,7 @@ class QemuVM(BaseNode):
except ProcessLookupError:
pass
except asyncio.TimeoutError:
if self._process:
try:
self._process.kill()
except ProcessLookupError: