---
 doc/source/library_ovsdb_manager.rst | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/doc/source/library_ovsdb_manager.rst
b/doc/source/library_ovsdb_manager.rst
index b23ae81d..9adeac4b 100644
--- a/doc/source/library_ovsdb_manager.rst
+++ b/doc/source/library_ovsdb_manager.rst
@@ -31,12 +31,13 @@ on a bridge.
             self.logger.info('New OVSDB connection from system id %s',
                              systemd_id)

-        def create_port(self, systemd_id, bridge_name, name):
+        def create_port(self, system_id, bridge_name, name):
             new_iface_uuid = uuid.uuid4()
             new_port_uuid = uuid.uuid4()

+            bridge = ovsdb.row_by_name(self, system_id, bridge_name)
+
             def _create_port(tables, insert):
-                bridge = ovsdb.row_by_name(self, system_id, bridge_name)

                 iface = insert(tables['Interface'], new_iface_uuid)
                 iface.name = name
@@ -46,7 +47,7 @@ on a bridge.
                 port.name = name
                 port.interfaces = [iface]

-                brdige.ports = bridfe.ports + [port]
+                bridge.ports = bridge.ports + [port]

                 return (new_port_uuid, new_iface_uuid)

@@ -58,4 +59,4 @@ on a bridge.
                                   name, bridge, rep.status)
                 return None

-            return reply.insert_uuid[new_port_uuid]
+            return rep.insert_uuids[new_port_uuid]
-- 
2.13.0

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to