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

Drop another dead lock at exit

This commit is contained in:
Julien Duponchelle 2016-08-31 11:01:42 +02:00
parent 0a08ea05d6
commit 238421c415
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -342,7 +342,7 @@ class Node:
try:
yield from self.post("/stop")
# We don't care if a compute is down at this step
except (aiohttp.errors.ClientOSError, aiohttp.web.HTTPNotFound, aiohttp.web.HTTPConflict):
except (aiohttp.errors.ClientOSError, aiohttp.errors.ClientRequestError, aiohttp.web.HTTPNotFound, aiohttp.web.HTTPConflict):
pass
@asyncio.coroutine