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 4f019526ccf..14bab332b01 100644 --- a/src/config/vnc_openstack/vnc_openstack/neutron_plugin_db.py +++ b/src/config/vnc_openstack/vnc_openstack/neutron_plugin_db.py @@ -1068,7 +1068,10 @@ def _port_list(self, net_objs, port_objs, iip_objs): memo_req['instance-ips'][iip_obj.uuid] = iip_obj for port_obj in port_objs: - port_info = self._port_vnc_to_neutron(port_obj, memo_req) + try: + port_info = self._port_vnc_to_neutron(port_obj, memo_req) + except NoIdError: + continue ret_q_ports.append(port_info) return ret_q_ports