1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-25 16:28:11 +00:00

Fix crash when converting topology with broken link

Fix #845
This commit is contained in:
Julien Duponchelle 2016-12-21 14:39:44 +01:00
parent e53db1ed81
commit ef54367bf7
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -310,6 +310,7 @@ def _convert_1_3_later(topo, topo_path):
# Create links
for old_link in topo.get("links", []):
try:
nodes = []
source_node = {
"adapter_number": ports[old_link["source_port_id"]].get("adapter_number", 0),
@ -324,6 +325,8 @@ def _convert_1_3_later(topo, topo_path):
"node_id": node_id_to_node_uuid[old_link["destination_node_id"]]
}
nodes.append(destination_node)
except KeyError:
continue
link = {
"link_id": str(uuid.uuid4()),