Skip to content
Snippets Groups Projects
Commit c11e9f33 authored by Bob Lantz's avatar Bob Lantz
Browse files

Fix OVS user switch (remove unnecessary % parameter)

parent acdcf9b6
No related branches found
No related tags found
No related merge requests found
...@@ -1178,7 +1178,7 @@ def bridgeOpts( self ): ...@@ -1178,7 +1178,7 @@ def bridgeOpts( self ):
if not self.inband: if not self.inband:
opts += ' other-config:disable-in-band=true' opts += ' other-config:disable-in-band=true'
if self.datapath == 'user': if self.datapath == 'user':
opts += ' datapath_type=netdev' % self opts += ' datapath_type=netdev'
if self.protocols and not self.isOldOVS(): if self.protocols and not self.isOldOVS():
opts += ' protocols=%s' % ( self, self.protocols ) opts += ' protocols=%s' % ( self, self.protocols )
if self.stp and self.failMode == 'standalone': if self.stp and self.failMode == 'standalone':
......
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