mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-03 03:26:41 +00:00
Improve error log when you have trouble to load a topology
This commit is contained in:
parent
5e7f97b175
commit
94d285301a
@ -138,7 +138,11 @@ def load_topology(path):
|
|||||||
if topo["revision"] < 7:
|
if topo["revision"] < 7:
|
||||||
topo = _convert_2_0_0_beta_2(topo, path)
|
topo = _convert_2_0_0_beta_2(topo, path)
|
||||||
|
|
||||||
_check_topology_schema(topo)
|
try:
|
||||||
|
_check_topology_schema(topo)
|
||||||
|
except aiohttp.web.HTTPConflict as e:
|
||||||
|
log.error("Can't load the topology %s", path)
|
||||||
|
raise e
|
||||||
|
|
||||||
if changed:
|
if changed:
|
||||||
with open(path, "w+", encoding="utf-8") as f:
|
with open(path, "w+", encoding="utf-8") as f:
|
||||||
|
Loading…
Reference in New Issue
Block a user