mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
parent
b905760635
commit
e0a2553be4
@ -663,7 +663,10 @@ class IOUVM(BaseVM):
|
||||
except asyncio.TimeoutError:
|
||||
if self._iou_process.returncode is None:
|
||||
log.warn("IOU process {} is still running... killing it".format(self._iou_process.pid))
|
||||
self._iou_process.kill()
|
||||
try:
|
||||
self._iou_process.kill()
|
||||
except ProcessLookupError:
|
||||
pass
|
||||
self._iou_process = None
|
||||
|
||||
if self.is_iouyap_running():
|
||||
|
Loading…
Reference in New Issue
Block a user