mirror of
https://github.com/GNS3/gns3-server
synced 2025-02-17 18:42:00 +00:00
Fix a possible deadlock at exit
This commit is contained in:
parent
acd1d95a8e
commit
597e1e618d
@ -80,7 +80,7 @@ class Controller:
|
|||||||
try:
|
try:
|
||||||
yield from compute.close()
|
yield from compute.close()
|
||||||
# We don't care if a compute is down at this step
|
# We don't care if a compute is down at this step
|
||||||
except (aiohttp.errors.ClientOSError, aiohttp.web_exceptions.HTTPError):
|
except (aiohttp.errors.ClientOSError, aiohttp.web_exceptions.HTTPError, OSError):
|
||||||
pass
|
pass
|
||||||
yield from self.gns3vm.exit_vm()
|
yield from self.gns3vm.exit_vm()
|
||||||
self._computes = {}
|
self._computes = {}
|
||||||
|
Loading…
Reference in New Issue
Block a user