From: 36970 Date: Mon, 1 Apr 2024 10:58:42 +0000 (+0000) Subject: Bug 2365 fixed: Modified time in vnfrs collection of mongo database is not updated... X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=refs%2Fchanges%2F85%2F14285%2F2;p=osm%2FLCM.git Bug 2365 fixed: Modified time in vnfrs collection of mongo database is not updated, after healing operation Change-Id: I0e188cbb06ee67f8399f5a2d72bb29799b70eb66 Signed-off-by: 36970 --- diff --git a/osm_lcm/ns.py b/osm_lcm/ns.py index 986d5de..43e699f 100644 --- a/osm_lcm/ns.py +++ b/osm_lcm/ns.py @@ -8079,6 +8079,15 @@ class NsLcm(LcmBase): ) finally: error_list = list() + if db_vnfrs_list and target_list: + for vnfrs in db_vnfrs_list: + for vnf_instance in target_list: + if vnfrs["_id"] == vnf_instance.get("vnfInstanceId"): + self.db.set_list( + "vnfrs", + {"_id": vnfrs["_id"]}, + {"_admin.modified": time()}, + ) if exc: error_list.append(str(exc)) try: