doc: fix error in ovsdb_manager.rst code

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
胡鼎原 2017-05-16 09:48:52 +08:00 committed by FUJITA Tomonori
parent 51a86c4d56
commit 8fa14c87ec
1 changed files with 5 additions and 4 deletions

View File

@ -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]