summaryrefslogtreecommitdiffstats
path: root/share/newton_base/openoapi/volume.py
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2019-05-28 05:32:54 +0000
committerBin Yang <bin.yang@windriver.com>2019-05-28 05:32:54 +0000
commit9154720606df1bb43e501a63cd23beca77a409eb (patch)
tree8c90d5891f45c28a408bc52100ff78c696186380 /share/newton_base/openoapi/volume.py
parenteb1e6c75c236bd88a3c371befebcb56fa4f9f090 (diff)
Fix issue of v1/.../tenants API
Fix all openoapi v1 which use logger Change-Id: Iaf82c1ca17959725531f6b340e3e770844dd222c Issue-ID: MULTICLOUD-657 Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'share/newton_base/openoapi/volume.py')
-rw-r--r--share/newton_base/openoapi/volume.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/share/newton_base/openoapi/volume.py b/share/newton_base/openoapi/volume.py
index 70b786b1..84ad7420 100644
--- a/share/newton_base/openoapi/volume.py
+++ b/share/newton_base/openoapi/volume.py
@@ -41,6 +41,10 @@ class Volumes(APIView):
("attachment_id", "attachmentId"),
]
+ def __init__(self):
+ super(Volumes, self).__init__()
+ self._logger = logger
+
def get(self, request, vimid="", tenantid="", volumeid=""):
logger.info("vimid, tenantid, volumeid = %s,%s,%s" % (vimid, tenantid, volumeid))
if request.data:
@@ -211,6 +215,10 @@ class Volumes(APIView):
class APIv1Volumes(Volumes):
+ def __init__(self):
+ super(APIv1Volumes, self).__init__()
+ self._logger = logger
+
def get(self, request, cloud_owner="", cloud_region_id="", tenantid="", volumeid=""):
self._logger.info("%s, %s" % (cloud_owner, cloud_region_id))