diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2019-07-19 16:31:00 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2019-07-19 16:31:00 +0800 |
commit | 672d3f46cee0772896ec06333bb620b7ac53a056 (patch) | |
tree | 4532d36cc1ac9124fed637b2f39f14365c894ced | |
parent | 9c506436d4babf30690bc2c591348eec2bd0ce94 (diff) |
Fix py2 to py3 serializer problem
Change-Id: I8d32fc4a9f058714fecc8ee74e933092f601e6a0
Issue-ID: VFC-1429
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rw-r--r-- | lcm/ns_vnfs/views/vnf_views.py | 2 |
1 files changed, 1 insertions, 1 deletions
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]) |