X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Flcm%2Fnf%2Fviews%2Fheal_vnf_view.py;h=b30194df103eac3f70799605e288815e4e79bc20;hb=549608a524f33c3aa485823ac0fe9fede2ff4a27;hp=4c2fad0e07b0abecaa427fb6ceb950085ac0cb8b;hpb=81b7794eadea9570fe0d0a3ee9a82e0bd4686b6e;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/lcm/nf/views/heal_vnf_view.py b/lcm/lcm/nf/views/heal_vnf_view.py index 4c2fad0e..b30194df 100644 --- a/lcm/lcm/nf/views/heal_vnf_view.py +++ b/lcm/lcm/nf/views/heal_vnf_view.py @@ -66,7 +66,7 @@ class HealVnfView(APIView): probDetail = ProblemDetailsSerializer(data={"status": status.HTTP_409_CONFLICT, "detail": "VNF Instance not in Instantiated State"}) resp_isvalid = probDetail.is_valid() if not resp_isvalid: - raise NFLCMException(probDetail.errors) + raise NFLCMException(probDetail.errors) return Response(data=probDetail.data, status=status.HTTP_409_CONFLICT) except NFLCMException as e: logger.error(e.message)