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

Ref #822
pull/830/head
Julien Duponchelle 8 years ago
parent 063087f6fb
commit 897a94f343
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -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))

Loading…
Cancel
Save