Change-Id: I714959589a063f3a62f4892aba6410020235f3b4
Issue-ID: VFC-1163
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
             resp = json.JSONDecoder().decode(ret[1])
             grant = GrantSerializer(data=resp)
             if not grant.is_valid():
-                raise GvnfmDriverException(grant.error_messages)
+                logger.warn(grant.error_messages)
+                # raise GvnfmDriverException(grant.error_messages)
             logger.debug("[%s]resp_data=%s", fun_name(), resp)
             return Response(data=resp, status=status.HTTP_201_CREATED)
         except GvnfmDriverException as e: