summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorHaibin Huang <haibin.huang@intel.com>2018-11-22 08:11:52 +0000
committerBin Yang <bin.yang@windriver.com>2018-11-27 13:01:27 +0000
commit873fce1e9b0cb3267275bb55da87873e239097cb (patch)
treebd0daaab51d96c2914a806c0bffc0de54870d053 /share
parent42eeea287a9d4302629213ea38b483c0fbbf1201 (diff)
Add server action for windriver APIv0
Change-Id: Ib6dca8c162644ba99ea04f5dd9c87ffde34bda8e Issue-ID: MULTICLOUD-414 Signed-off-by: Haibin Huang <haibin.huang@intel.com> (cherry picked from commit b32eb9864c7fd9757dd0192af05af6e48699b42b)
Diffstat (limited to 'share')
-rw-r--r--share/newton_base/openoapi/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/newton_base/openoapi/server.py b/share/newton_base/openoapi/server.py
index be79c466..c4ef3f12 100644
--- a/share/newton_base/openoapi/server.py
+++ b/share/newton_base/openoapi/server.py
@@ -555,7 +555,7 @@ class ServerAction(APIView):
endpoint_filter=self.service,
headers={"Content-Type": "application/json",
"Accept": "application/json"})
- resp_body = resp.json()
+ resp_body = {}
return Response(data=resp_body, status=resp.status_code)
except VimDriverKiloException as e: