diff --git a/src/config/vnc_openstack/vnc_openstack/neutron_plugin_db.py b/src/config/vnc_openstack/vnc_openstack/neutron_plugin_db.py index 8ad6385072b..aebd01986e7 100644 --- a/src/config/vnc_openstack/vnc_openstack/neutron_plugin_db.py +++ b/src/config/vnc_openstack/vnc_openstack/neutron_plugin_db.py @@ -140,7 +140,7 @@ def _ensure_instance_exists(self, instance_id): def _ensure_default_security_group_exists(self, proj_id): proj_id = str(uuid.UUID(proj_id)) - proj_obj = self._vnc_lib.project_read(id=proj_id) + proj_obj = self._vnc_lib.project_read(id=proj_id, fields=['security_groups']) vnc_openstack.ensure_default_security_group(self._vnc_lib, proj_obj) #end _ensure_default_security_group_exists