aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryunlong ying <ying.yunlong@zte.com.cn>2018-01-26 03:06:33 +0000
committerGerrit Code Review <gerrit@onap.org>2018-01-26 03:06:33 +0000
commit8b74254d28ae8fa18102b06a6ae2bbd1cdd1840b (patch)
tree9124c06a3ad5039cda521c24781c807c2faa65bf
parentdbb5a07972283f26b35984292b0717d92a80dc4c (diff)
parent6476ce2e757feb9bad7091d7d6688aea24a54681 (diff)
Merge "Add vfc-lcm nsheal log"
-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 b8904d54..6b14f584 100644
--- a/lcm/ns/views.py
+++ b/lcm/ns/views.py
@@ -158,6 +158,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()