From 0fe7c7d7125b4f107cac224cbbff6596e1585919 Mon Sep 17 00:00:00 2001 From: govindarajul Date: Wed, 6 Jul 2022 10:47:00 +0000 Subject: [PATCH] =?utf8?q?Bugzilla=20=E2=80=93=20Bug=202102=20:=20Vertical?= =?utf8?q?=20Scaling=20failed=20in=20LCM=20in=20=5Fwait=5Fng=5Fro=20method?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I3e25b40fe7957f8b7b30b530499ffe8843eb0de3 Signed-off-by: govindarajul (cherry picked from commit 12794ee9112f4da3c3988bf920fbc8af3c492eb1) --- osm_lcm/ns.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)) -- 2.25.1