config: fix typo in cluster topology.
This commit is contained in:
parent
8c5df4be2e
commit
2e5e908579
1 changed files with 2 additions and 2 deletions
|
@ -87,9 +87,9 @@ class Cluster(BaseTopology):
|
||||||
|
|
||||||
# connect this cluster to the router
|
# connect this cluster to the router
|
||||||
link_out = IntLink(link_id=self.num_int_links(), src_node=self.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,
|
link_in = IntLink(link_id=self.num_int_links(), src_node=node.router,
|
||||||
dst_node_=self.router)
|
dst_node=self.router)
|
||||||
|
|
||||||
if node.extBW:
|
if node.extBW:
|
||||||
link_out.bandwidth_factor = node.extBW
|
link_out.bandwidth_factor = node.extBW
|
||||||
|
|
Loading…
Reference in a new issue