Fix OVS protocols option

This commit is contained in:
Bob Lantz
2015-02-04 04:44:55 -08:00
parent 6a38811f1a
commit 93be1d0401
+1 -1
View File
@@ -1181,7 +1181,7 @@ class OVSSwitch( Switch ):
if self.datapath == 'user':
opts += ' datapath_type=netdev'
if self.protocols and not self.isOldOVS():
opts += ' protocols=%s' % ( self, self.protocols )
opts += ' protocols=%s' % self.protocols
if self.stp and self.failMode == 'standalone':
opts += ' stp_enable=true' % self
return opts