summaryrefslogtreecommitdiffstats
path: root/lcm/v2/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'lcm/v2/views.py')
-rw-r--r--lcm/v2/views.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lcm/v2/views.py b/lcm/v2/views.py
index c35ab01e..9f7fe030 100644
--- a/lcm/v2/views.py
+++ b/lcm/v2/views.py
@@ -57,8 +57,9 @@ class VnfGrantView(APIView):
class VnfNotifyView(APIView):
- def post(self, request):
+ def post(self, request, vnfmId, vnfInstanceId):
logger.debug("VnfNotifyView post: %s" % request.data)
+ logger.debug("vnfmId: %s vnfInstanceId: %s", vnfmId, vnfInstanceId)
return Response(data={}, status=status.HTTP_204_NO_CONTENT)
def get(self, request):