Skip to content

Commit

Permalink
One less exit deadlock
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-duponchelle committed Sep 29, 2016
1 parent 462238a commit 74dd212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3server/controller/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def close(self, ignore_notification=False):
try:
yield from compute.post("/projects/{}/close".format(self._id))
# We don't care if a compute is down at this step
except (aiohttp.errors.ClientOSError, aiohttp.web.HTTPError):
except (aiohttp.errors.ClientOSError, aiohttp.web.HTTPError, aiohttp.ClientResponseError):
pass
self._cleanPictures()
self._status = "closed"
Expand Down

0 comments on commit 74dd212

Please sign in to comment.