Fix ComputeError: Can't connect to Main server

Fix #942
pull/954/head
Julien Duponchelle 7 years ago
parent 6a015fffeb
commit 31ed2a4c96
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -663,7 +663,10 @@ class Project:
pass
self._status = "closed"
self._loading = False
raise e
if isinstance(e, ComputeError):
raise aiohttp.web.HTTPConflict(text=str(e))
else:
raise e
try:
os.remove(path + ".backup")
except OSError:

Loading…
Cancel
Save