Fix up router creation bug

This commit is contained in:
2018-09-24 02:16:02 -04:00
parent e6949ff126
commit 30399608bc
2 changed files with 5 additions and 8 deletions

View File

@ -98,7 +98,7 @@ class RouterInstance():
def updatenetworklist(self, s_network):
self.s_network = s_network
for network in s_network:
self.network_list.append(network.getvni())
self.network_list.append(s_network[network].getvni())
# Flush all VMs on the host
def set_secondary(self):