ivo_yordanov wrote:
Hello
I have just installed the newer version of GNS3 and I seem to get the following error when i try adding a cloud to connect the virtual network with the real one:
Traceback (most recent call last):
File "./gns3-gui\gns3\graphics_view.py", line 678, in dropEvent
File "./gns3-gui\gns3\graphics_view.py", line 1109, in createNode
KeyError: 'server'
Traceback (most recent call last):
File "./gns3-gui\gns3\graphics_view.py", line 678, in dropEvent
File "./gns3-gui\gns3\graphics_view.py", line 1109, in createNode
KeyError: 'server'
From what I can see on line 678:
self.createNode(node_data, event.pos())
And on line 1109
if node_data["server"] == "local":
server = Servers.instance().localServer()
else:
host, port = node_data["server"].rsplit(":", 1)
server = Servers.instance().getRemoteServer(host, port)
if not server.connected() and ConnectToServer(self, server) is False:
return
My understanding of python isn't big but this is a basic if .. .else and shouldn't server go like this: 'server'
Regards
Ivo Yordanov
This is a known issue and the developers have said they will fix it in a corrective release:
https://community.gns3.com/thread/3031