From: 36970 Date: Mon, 1 Apr 2024 11:23:08 +0000 (+0000) Subject: Bug 2362 fixed:Operational-status is not getting updated when healing is triggered X-Git-Tag: release-v16.0-start~12 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=0ee777934b4c165578dd7c0ab411c710a16bb90d;p=osm%2FLCM.git Bug 2362 fixed:Operational-status is not getting updated when healing is triggered Change-Id: I81040ca80f9dba23c7fd873decde7df8cc1a0ff2 Signed-off-by: 36970 --- diff --git a/osm_lcm/ns.py b/osm_lcm/ns.py index 25ae038..986d5de 100644 --- a/osm_lcm/ns.py +++ b/osm_lcm/ns.py @@ -7912,6 +7912,7 @@ class NsLcm(LcmBase): old_config_status = db_nsr["config-status"] db_nsr_update = { + "operational-status": "healing", "_admin.deployed.RO.operational-status": "healing", } self.update_db_2("nsrs", nsr_id, db_nsr_update) @@ -8057,7 +8058,6 @@ class NsLcm(LcmBase): task_instantiation_info=tasks_dict_info, stage=stage, ) - except ( ROclient.ROClientException, DbException,