From 947dcf14065f6ca9a8c51fe06c248dcafd83e010 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 2 Sep 2016 10:56:20 +0200 Subject: [PATCH] Prevent another deadlock at exit --- gns3server/controller/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/node.py b/gns3server/controller/node.py index 27ad8641..d4de8624 100644 --- a/gns3server/controller/node.py +++ b/gns3server/controller/node.py @@ -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.errors.ClientRequestError, aiohttp.web.HTTPNotFound, aiohttp.web.HTTPConflict): + except (aiohttp.errors.ClientOSError, aiohttp.errors.ClientHttpProcessingError, aiohttp.web.HTTPNotFound, aiohttp.web.HTTPConflict): pass @asyncio.coroutine