autostaticarp is broken without this

This commit is contained in:
cody burkard
2014-08-13 15:08:04 -07:00
parent 891a9e8bdf
commit af4c9719b3
+3 -1
View File
@@ -414,10 +414,12 @@ class Link( object ):
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)