From: ying.yunlong Date: Fri, 26 Jan 2018 03:00:07 +0000 (+0800) Subject: Add vfc-lcm nsheal log X-Git-Tag: v1.1.0~213^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=6476ce2e757feb9bad7091d7d6688aea24a54681;p=vfc%2Fnfvo%2Flcm.git Add vfc-lcm nsheal log Change-Id: Ib5ea7a9c12cfa66e82f36874885bdee2936b5cbe Issue-ID: VFC-682 Signed-off-by: ying.yunlong --- diff --git a/lcm/ns/views.py b/lcm/ns/views.py index 03a5763d..95a570eb 100644 --- a/lcm/ns/views.py +++ b/lcm/ns/views.py @@ -92,6 +92,7 @@ class TerminateNSView(APIView): class NSHealView(APIView): def post(self, request, ns_instance_id): logger.debug("Enter HealNSView::post %s", request.data) + logger.debug("Enter HealNSView:: %s", ns_instance_id) job_id = JobUtil.create_job("VNF", JOB_TYPE.HEAL_VNF, ns_instance_id) try: NSHealService(ns_instance_id, request.data, job_id).start()