Skip to content

Commit

Permalink
Merge pull request #86 from MrCocoaCat/patch-1
Browse files Browse the repository at this point in the history
Update bridge.py
  • Loading branch information
anarkiwi committed Jan 31, 2021
2 parents a5b4af9 + f26a60b commit 91542b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ryu/lib/ovs/bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@ class OVSBridge(object):
"""

def __init__(self, CONF, datapath_id, ovsdb_addr, timeout=None,
exception=None):
exception=None, br_name=None):
super(OVSBridge, self).__init__()
self.datapath_id = datapath_id
self.ovsdb_addr = ovsdb_addr
self.vsctl = ovs_vsctl.VSCtl(ovsdb_addr)
self.timeout = timeout or CONF.ovsdb_timeout
self.exception = exception

self.br_name = None
self.br_name = br_name

def run_command(self, commands):
"""
Expand Down

0 comments on commit 91542b2

Please sign in to comment.