Bug 2362 fixed:Operational-status is not getting updated when healing is triggered

Change-Id: I81040ca80f9dba23c7fd873decde7df8cc1a0ff2
Signed-off-by: 36970 <jegan.s@tataelxsi.co.in>
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 @@
             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 @@
                                 task_instantiation_info=tasks_dict_info,
                                 stage=stage,
                             )
-
         except (
             ROclient.ROClientException,
             DbException,