From: govindarajul Date: Wed, 6 Jul 2022 10:47:00 +0000 (+0000) Subject: Bugzilla – Bug 2102 : Vertical Scaling failed in LCM in _wait_ng_ro method X-Git-Tag: v12.0.2~2 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=inline;h=0fe7c7d7125b4f107cac224cbbff6596e1585919;p=osm%2FLCM.git Bugzilla – Bug 2102 : Vertical Scaling failed in LCM in _wait_ng_ro method Change-Id: I3e25b40fe7957f8b7b30b530499ffe8843eb0de3 Signed-off-by: govindarajul (cherry picked from commit 12794ee9112f4da3c3988bf920fbc8af3c492eb1) --- diff --git a/osm_lcm/ns.py b/osm_lcm/ns.py index ee9bc5c..8dd8b2a 100644 --- a/osm_lcm/ns.py +++ b/osm_lcm/ns.py @@ -225,6 +225,7 @@ class NsLcm(LcmBase): "termination": self.RO.status, "migrate": self.RO.status, "healing": self.RO.recreate_status, + "verticalscale": self.RO.status, } @staticmethod @@ -8421,7 +8422,8 @@ class NsLcm(LcmBase): self.logger.debug("RO return > {}".format(desc)) action_id = desc["action_id"] await self._wait_ng_ro( - nsr_id, action_id, nslcmop_id, start_deploy, self.timeout_verticalscale + nsr_id, action_id, nslcmop_id, start_deploy, self.timeout_verticalscale, + operation="verticalscale" ) except (ROclient.ROClientException, DbException, LcmException) as e: self.logger.error("Exit Exception {}".format(e))