aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2018-01-26 11:00:07 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2018-01-26 11:00:07 +0800
commit6476ce2e757feb9bad7091d7d6688aea24a54681 (patch)
tree51daa6ef2c57514a84b17402f55d80e259d36b52
parentb4db6d570f185e45c766cce65852b6958efe21de (diff)
Add vfc-lcm nsheal log
Change-Id: Ib5ea7a9c12cfa66e82f36874885bdee2936b5cbe Issue-ID: VFC-682 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
-rw-r--r--lcm/ns/views.py1
1 files changed, 1 insertions, 0 deletions
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()