Skip to content
Snippets Groups Projects
Commit af4c9719 authored by cody burkard's avatar cody burkard
Browse files

autostaticarp is broken without this

parent 891a9e8b
No related branches found
No related tags found
No related merge requests found
......@@ -414,10 +414,12 @@ def __str__( self ):
class TCLink( Link ):
"Link with symmetric TC interfaces configured via opts"
def __init__( self, node1, node2, port1=None, port2=None,
intfName1=None, intfName2=None, **params ):
intfName1=None, intfName2=None,
addr1=None, addr2=None, **params ):
Link.__init__( self, node1, node2, port1=port1, port2=port2,
intfName1=intfName1, intfName2=intfName2,
cls1=TCIntf,
cls2=TCIntf,
addr1=addr1, addr2=addr2,
params1=params,
params2=params)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment