Bug 2310: Fix for NS Termination/Update failing after Vertical-Scaling/Migration/Operate-VNF
Removed created flag and created_items being updated in EXEC operations in ns_thread.py
Change-Id: I55be8c70b4473f6129410aabf1025d2819bd20ff
Signed-off-by: deepika.e <deepika.e@tataelxsi.co.in>
diff --git a/NG-RO/osm_ng_ro/ns_thread.py b/NG-RO/osm_ng_ro/ns_thread.py
index 2b9d8cf..08edcd1 100644
--- a/NG-RO/osm_ng_ro/ns_thread.py
+++ b/NG-RO/osm_ng_ro/ns_thread.py
@@ -1404,8 +1404,6 @@
task = ro_task["tasks"][task_index]
task_id = task["task_id"]
db_task_update = {"retries": 0}
- created = False
- created_items = {}
target_vim = self.my_vims[ro_task["target_id"]]
try:
@@ -1419,10 +1417,6 @@
ro_vim_item_update = {
"vim_id": vim_vm_id,
"vim_status": "ACTIVE",
- "created": created,
- "created_items": created_items,
- "vim_details": None,
- "vim_message": None,
}
self.logger.debug(
"task={} {} vm-migration done".format(task_id, ro_task["target_id"])
@@ -1435,7 +1429,6 @@
)
ro_vim_item_update = {
"vim_status": "VIM_ERROR",
- "created": created,
"vim_message": str(e),
}
@@ -1845,8 +1838,6 @@
db_task_update = {"retries": 0}
target_vim = self.my_vims[ro_task["target_id"]]
vim_interfaces = []
- created = False
- created_items = {}
refreshed_vim_info = {}
try:
@@ -1885,8 +1876,6 @@
ro_vim_item_update = {
"vim_id": vim_vm_id,
"vim_status": "ACTIVE",
- "created": created,
- "created_items": created_items,
"vim_details": None,
"vim_message": None,
}
@@ -1913,7 +1902,6 @@
)
ro_vim_item_update = {
"vim_status": "VIM_ERROR",
- "created": created,
"vim_message": str(e),
}
@@ -1925,9 +1913,7 @@
task = ro_task["tasks"][task_index]
task_id = task["task_id"]
db_task_update = {"retries": 0}
- created = False
target_flavor_uuid = None
- created_items = {}
refreshed_vim_info = {}
target_vim = self.my_vims[ro_task["target_id"]]
@@ -1953,8 +1939,6 @@
ro_vim_item_update = {
"vim_id": vim_vm_id,
"vim_status": "ACTIVE",
- "created": created,
- "created_items": created_items,
"vim_details": None,
"vim_message": None,
}
@@ -1975,7 +1959,6 @@
)
ro_vim_item_update = {
"vim_status": "VIM_ERROR",
- "created": created,
"vim_message": str(e),
}
diff --git a/releasenotes/notes/bug_2310_fix-a89efc73f53f5578.yaml b/releasenotes/notes/bug_2310_fix-a89efc73f53f5578.yaml
new file mode 100644
index 0000000..830f002
--- /dev/null
+++ b/releasenotes/notes/bug_2310_fix-a89efc73f53f5578.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:
+ - |
+ This fixes the bug 2310 - NS Termination/Update failing after
+ Vertical-Scaling/Migration/Operate-VNF