From ec61f3256ec33e3d2723a98ace5535dffd6643d0 Mon Sep 17 00:00:00 2001 From: Quentin De Coninck Date: Wed, 1 Jul 2020 16:25:45 +0200 Subject: [PATCH] fix typo --- core/topo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/topo.py b/core/topo.py index ca741fe..22a2aac 100644 --- a/core/topo.py +++ b/core/topo.py @@ -263,12 +263,12 @@ class BottleneckLink(object): for bs1_ifname in bs1_interface_names: clean_cmd = self.link_characteristics.build_delete_tc_cmd(bs1_ifname) logging.info(clean_cmd) - self.topo.command_top(self.bs1, clean_cmd) + self.topo.command_to(self.bs1, clean_cmd) for bs2_ifname in bs2_interface_names: clean_cmd = self.link_characteristics.build_delete_tc_cmd(bs2_ifname) logging.info(clean_cmd) - self.topo.command_top(self.bs2, clean_cmd) + self.topo.command_to(self.bs2, clean_cmd) # Flow bs0 -> bs3 policing_cmd = self.link_characteristics.build_policing_cmd(bs1_interface_names[0])