Skip to content

Commit 67a7882

Browse files
update_link had wrong arg order
1 parent 088260a commit 67a7882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daemon/core/emulator/coreemu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def delete_link(self, node_one_id, node_two_id, interface_one_id, interface_two_
378378
if node_two:
379379
node_two.lock.release()
380380

381-
def update_link(self, node_one_id, node_two_id, link_options, interface_one_id=None, interface_two_id=None):
381+
def update_link(self, node_one_id, node_two_id, interface_one_id=None, interface_two_id=None, link_options=LinkOptions()):
382382
"""
383383
Update link information between nodes.
384384

0 commit comments

Comments
 (0)