1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-11 08:30:57 +00:00

Fix a rare crash when writing a file on a remote server

Fix #829
This commit is contained in:
Julien Duponchelle 2016-12-13 09:25:44 +01:00
parent 8f42122702
commit 1cf987a548
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -456,8 +456,9 @@ class ProjectHandler:
if not packet:
break
f.write(packet)
except FileNotFoundError:
raise aiohttp.web.HTTPNotFound()
except PermissionError:
raise aiohttp.web.HTTPForbidden()
except OSError as e:
raise aiohttp.web.HTTPConflict(text=str(e))