[NDP] try to pass in port as integer

This commit is contained in:
Nico Schottelius 2019-02-26 15:42:56 +01:00
parent 5bd7eb57a6
commit a92a9b82ea
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ class L2Controller(object):
self.controller.table_clear("ndp")
for port in all_ports:
self.controller.table_add("ndp", "multicast_pkg", [ndp_prefix, port], [str(port)])
self.controller.table_add("ndp", "multicast_pkg", [ndp_prefix, port], [port])
def init_boilerplate(self, sw_name):