From cc89099ea5658b0d85a736329db3ba7d2e6cba70 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Thu, 27 Jul 2017 11:31:34 +0200 Subject: [PATCH] Fix ServerDisconnectedError for stop_all Fix #1089 --- gns3server/controller/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/project.py b/gns3server/controller/project.py index 1523d0b90..f7179c2b0 100644 --- a/gns3server/controller/project.py +++ b/gns3server/controller/project.py @@ -763,7 +763,7 @@ class Project: try: yield from compute.post("/projects/{}/close".format(self._id)) # We don't care if a compute is down at this step - except (ComputeError, aiohttp.web.HTTPNotFound, aiohttp.web.HTTPConflict): + except (ComputeError, aiohttp.web.HTTPNotFound, aiohttp.web.HTTPConflict, aiohttp.ServerDisconnectedError): pass try: if os.path.exists(path + ".backup"):