mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
parent
b905760635
commit
e0a2553be4
@ -663,7 +663,10 @@ class IOUVM(BaseVM):
|
|||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
if self._iou_process.returncode is None:
|
if self._iou_process.returncode is None:
|
||||||
log.warn("IOU process {} is still running... killing it".format(self._iou_process.pid))
|
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
|
self._iou_process = None
|
||||||
|
|
||||||
if self.is_iouyap_running():
|
if self.is_iouyap_running():
|
||||||
|
Loading…
Reference in New Issue
Block a user