From d8759b6c9c0dd240d4b5af048231f87373428607 Mon Sep 17 00:00:00 2001 From: aticig Date: Mon, 11 Jul 2022 21:41:29 +0300 Subject: [PATCH 1/1] Fixing Bug 1909 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fix will check the port existence before deleting the port. It will solve the error "Error deleting port: PortNotFoundClient".þ Change-Id: Ifc98a2890248090ec7afb9dd5e5cd503606dae26 Signed-off-by: aticig --- .../osm_rovim_openstack/vimconn_openstack.py | 7 ++++++- .../fixing_bug_1909-9769762f367539cb.yaml | 21 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/fixing_bug_1909-9769762f367539cb.yaml diff --git a/RO-VIM-openstack/osm_rovim_openstack/vimconn_openstack.py b/RO-VIM-openstack/osm_rovim_openstack/vimconn_openstack.py index c2ac81f4..bb06bbcd 100644 --- a/RO-VIM-openstack/osm_rovim_openstack/vimconn_openstack.py +++ b/RO-VIM-openstack/osm_rovim_openstack/vimconn_openstack.py @@ -2281,7 +2281,12 @@ class vimconnector(vimconn.VimConnector): try: k_item, _, k_id = k.partition(":") if k_item == "port": - self.neutron.delete_port(k_id) + port_dict = self.neutron.list_ports() + existing_ports = [ + port["id"] for port in port_dict["ports"] if port_dict + ] + if k_id in existing_ports: + self.neutron.delete_port(k_id) except Exception as e: self.logger.error( "Error deleting port: {}: {}".format(type(e).__name__, e) diff --git a/releasenotes/notes/fixing_bug_1909-9769762f367539cb.yaml b/releasenotes/notes/fixing_bug_1909-9769762f367539cb.yaml new file mode 100644 index 00000000..af010be6 --- /dev/null +++ b/releasenotes/notes/fixing_bug_1909-9769762f367539cb.yaml @@ -0,0 +1,21 @@ +####################################################################################### +# Copyright ETSI Contributors and Others. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. +# See the License for the specific language governing permissions and +# limitations under the License. +####################################################################################### +--- +fixes: + - | + Fixing Bug 1909, this fix will check the port existence before deleting the port. + It will solve the error "Error deleting port: PortNotFoundClient". -- 2.25.1