1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-12 19:38:57 +00:00

Do not block server startup if one project use non implemented conversion

Ref #822
This commit is contained in:
Julien Duponchelle 2016-12-12 11:18:17 +01:00
parent 063087f6fb
commit 897a94f343
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -158,7 +158,7 @@ class Controller:
if file.endswith(".gns3"):
try:
yield from self.load_project(os.path.join(project_dir, file), load=False)
except aiohttp.web_exceptions.HTTPConflict:
except (aiohttp.web_exceptions.HTTPConflict, NotImplementedError):
pass # Skip not compatible projects
except OSError as e:
log.error(str(e))