config: fix typo in cluster topology.

This commit is contained in:
Tushar Krishna 2016-10-07 23:56:48 -04:00
parent 8c5df4be2e
commit 2e5e908579

View file

@ -87,9 +87,9 @@ class Cluster(BaseTopology):
# connect this cluster to the router
link_out = IntLink(link_id=self.num_int_links(), src_node=self.router,
dst_node_=node.router)
dst_node=node.router)
link_in = IntLink(link_id=self.num_int_links(), src_node=node.router,
dst_node_=self.router)
dst_node=self.router)
if node.extBW:
link_out.bandwidth_factor = node.extBW