Fixing Bug 1376 68/12168/3
authoraticig <gulsum.atici@canonical.com>
Tue, 7 Jun 2022 12:00:35 +0000 (15:00 +0300)
committeraticig <gulsum.atici@canonical.com>
Fri, 17 Jun 2022 12:19:54 +0000 (14:19 +0200)
This fix will check the port existence before deleting the port.
It will solve the error "Error deleting port: PortNotFoundClient".

Change-Id: I2b0b841c6111578e0d1a0cde9057eb3ab0b5a86a
Signed-off-by: aticig <gulsum.atici@canonical.com>
RO-VIM-openstack/osm_rovim_openstack/vimconn_openstack.py
releasenotes/notes/fixing_bug_1376-4146971afad0594e.yaml [new file with mode: 0644]

index 6b46dc1..11a50aa 100644 (file)
@@ -2295,7 +2295,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(device_id=vm_id)
+                        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_1376-4146971afad0594e.yaml b/releasenotes/notes/fixing_bug_1376-4146971afad0594e.yaml
new file mode 100644 (file)
index 0000000..814d3ba
--- /dev/null
@@ -0,0 +1,22 @@
+#######################################################################################
+# 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 1376, this fix will check the port existence before deleting the port.
+    It will solve the error "Error deleting port: PortNotFoundClient".
+