diff options
author | fengyuanxing <feng.yuanxing@zte.com.cn> | 2018-01-29 09:53:34 +0800 |
---|---|---|
committer | fengyuanxing <feng.yuanxing@zte.com.cn> | 2018-01-29 09:53:34 +0800 |
commit | 24492becbf1e0b8524753d3c19856b1d79f1aa7d (patch) | |
tree | 3770b56db62e36503fb563d851d3bb7bc5bbac4c | |
parent | 423fac537cab5a522177063984484da83eba61b9 (diff) |
Modify the incorrect response status code
Change-Id: I83b2a276932e10cf384ea459a30e99182516b48b
Issue-ID: VFC-685
Signed-off-by: fengyuanxing <feng.yuanxing@zte.com.cn>
-rw-r--r-- | catalog/packages/views.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/catalog/packages/views.py b/catalog/packages/views.py index f89736ee..e5538915 100644 --- a/catalog/packages/views.py +++ b/catalog/packages/views.py @@ -46,7 +46,7 @@ logger = logging.getLogger(__name__) type=openapi.TYPE_STRING, pattern='CSAR(\w+) distributed successfully.')), status.HTTP_500_INTERNAL_SERVER_ERROR: openapi.Response( - 'error message', + 'error', openapi.Schema( type=openapi.TYPE_STRING))}) @swagger_auto_schema( @@ -56,7 +56,7 @@ logger = logging.getLogger(__name__) responses={ status.HTTP_200_OK: NsPackagesSerializer, status.HTTP_500_INTERNAL_SERVER_ERROR: openapi.Response( - 'error message', + 'error', openapi.Schema( type=openapi.TYPE_STRING))}) @api_view(http_method_names=['POST', 'GET']) @@ -99,7 +99,7 @@ def nspackages_rc(request, *args, **kwargs): responses={ status.HTTP_202_ACCEPTED: PostJobResponseSerializer, status.HTTP_500_INTERNAL_SERVER_ERROR: openapi.Response( - 'error message', + 'error', openapi.Schema( type=openapi.TYPE_STRING))}) @swagger_auto_schema( @@ -109,7 +109,7 @@ def nspackages_rc(request, *args, **kwargs): responses={ status.HTTP_200_OK: NfPackagesSerializer, status.HTTP_500_INTERNAL_SERVER_ERROR: openapi.Response( - 'error message', + 'error', openapi.Schema( type=openapi.TYPE_STRING))}) @api_view(http_method_names=['POST', 'GET']) @@ -229,7 +229,7 @@ def ns_model_parser(request, *args, **kwargs): responses={ status.HTTP_202_ACCEPTED: ParseNfPackageResponseSerializer, status.HTTP_500_INTERNAL_SERVER_ERROR: openapi.Response( - 'error message', + 'error', openapi.Schema( type=openapi.TYPE_STRING))}) @api_view(http_method_names=['POST']) |