From: fujinhua Date: Fri, 19 Jul 2019 08:31:00 +0000 (+0800) Subject: Fix py2 to py3 serializer problem X-Git-Tag: 1.3.4~19 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=672d3f46cee0772896ec06333bb620b7ac53a056;p=vfc%2Fnfvo%2Flcm.git Fix py2 to py3 serializer problem Change-Id: I8d32fc4a9f058714fecc8ee74e933092f601e6a0 Issue-ID: VFC-1429 Signed-off-by: fujinhua --- diff --git a/lcm/ns_vnfs/views/vnf_views.py b/lcm/ns_vnfs/views/vnf_views.py index d5388b4a..c0264c39 100644 --- a/lcm/ns_vnfs/views/vnf_views.py +++ b/lcm/ns_vnfs/views/vnf_views.py @@ -52,7 +52,7 @@ class VnfGrantView(APIView): if not resp_serializer.is_valid(): raise Exception(resp_serializer.errors) - return Response(data=resp_serializer.data, status=status.HTTP_201_CREATED) + return Response(data=grant_resp, status=status.HTTP_201_CREATED) except Exception as e: logger.error(traceback.format_exc()) logger.error("Exception in VnfGrant: %s", e.args[0])