Bug 2217 fixed: modified the cloud-init merge configs
[osm/RO.git] / RO-plugin / osm_ro_plugin / openflow_conn.py
index f1869e8..c41d7bc 100644 (file)
@@ -286,9 +286,9 @@ class SdnConnectorOpenFlow(SdnConnectorBase):
         rules_to_delete = created_items.get("installed_rules_ids") or []
         new_installed_rules_ids = []
         error_list = []
+        step = "Checking ports and network type compatibility"
 
         try:
-            step = "Checking ports and network type compatibility"
             if ifaces_nb < 2:
                 pass
             elif net_type == "ELINE":
@@ -369,7 +369,7 @@ class SdnConnectorOpenFlow(SdnConnectorBase):
                 try:
                     self.of_connector.del_flow(flow_id)
                 except OpenflowConnNotFoundException:
-                    pass
+                    self.logger.exception("OpenflowConnNotFoundException occured.")
                 except OpenflowConnException as e:
                     error_text = "Cannot remove rule '{}': {}".format(flow_id, e)
                     error_list.append(error_text)