mirror of
https://github.com/GNS3/gns3-server
synced 2025-01-12 09:00:57 +00:00
Do not block server startup if one project use non implemented conversion
Ref #822
This commit is contained in:
parent
063087f6fb
commit
897a94f343
@ -158,7 +158,7 @@ class Controller:
|
|||||||
if file.endswith(".gns3"):
|
if file.endswith(".gns3"):
|
||||||
try:
|
try:
|
||||||
yield from self.load_project(os.path.join(project_dir, file), load=False)
|
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
|
pass # Skip not compatible projects
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
log.error(str(e))
|
log.error(str(e))
|
||||||
|
Loading…
Reference in New Issue
Block a user