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

Prevent another deadlock at exit

This commit is contained in:
Julien Duponchelle 2016-09-02 10:56:20 +02:00
parent 6a259c7e06
commit 947dcf1406
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -342,7 +342,7 @@ class Node:
try: try:
yield from self.post("/stop") yield from self.post("/stop")
# 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.errors.ClientRequestError, aiohttp.web.HTTPNotFound, aiohttp.web.HTTPConflict): except (aiohttp.errors.ClientOSError, aiohttp.errors.ClientHttpProcessingError, aiohttp.web.HTTPNotFound, aiohttp.web.HTTPConflict):
pass pass
@asyncio.coroutine @asyncio.coroutine