Skip to content

Commit

Permalink
Merge "Retrieve provider properties while reading VN" into R3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Oct 25, 2016
2 parents e9a8bee + 70857c9 commit 8a81a25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/api-server/vnc_cfg_types.py
Expand Up @@ -619,8 +619,8 @@ def pre_dbe_create(cls, tenant_name, obj_dict, db_conn):
return (False, (400, msg))
vn_uuid = db_conn.fq_name_to_uuid('virtual-network', vn_fq_name)

ok, result = cls.dbe_read(db_conn, 'virtual-network', vn_uuid,
obj_fields=['parent_uuid'])
ok, result = cls.dbe_read(db_conn, 'virtual_network', vn_uuid,
obj_fields=['parent_uuid', 'provider_properties'])
if not ok:
return ok, result

Expand Down

0 comments on commit 8a81a25

Please sign in to comment.