update_link had wrong arg order
This commit is contained in:
parent
088260abf2
commit
67a78828c3
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ class EmuSession(Session):
|
||||||
if node_two:
|
if node_two:
|
||||||
node_two.lock.release()
|
node_two.lock.release()
|
||||||
|
|
||||||
def update_link(self, node_one_id, node_two_id, link_options, interface_one_id=None, interface_two_id=None):
|
def update_link(self, node_one_id, node_two_id, interface_one_id=None, interface_two_id=None, link_options=LinkOptions()):
|
||||||
"""
|
"""
|
||||||
Update link information between nodes.
|
Update link information between nodes.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue