summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/handlers/pod_handlers.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapi/opnfv_testapi/handlers/pod_handlers.py')
-rw-r--r--testapi/opnfv_testapi/handlers/pod_handlers.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/testapi/opnfv_testapi/handlers/pod_handlers.py b/testapi/opnfv_testapi/handlers/pod_handlers.py
index 06a8b17..03c2033 100644
--- a/testapi/opnfv_testapi/handlers/pod_handlers.py
+++ b/testapi/opnfv_testapi/handlers/pod_handlers.py
@@ -6,7 +6,6 @@
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-import re
from opnfv_testapi.handlers import base_handlers
from opnfv_testapi.models import pod_models
@@ -19,14 +18,6 @@ class GenericPodHandler(base_handlers.GenericApiHandler):
self.table = 'pods'
self.table_cls = pod_models.Pod
- def set_query(self):
- query = dict()
- for k in self.request.query_arguments.keys():
- v = self.get_query_argument(k)
- if k == 'name':
- query['name'] = re.compile(v, re.IGNORECASE)
- return query
-
class PodCLHandler(GenericPodHandler):
@swagger.operation(nickname='listAllPods')
@@ -40,7 +31,7 @@ class PodCLHandler(GenericPodHandler):
@in name: query
@required name: False
"""
- self._list(query=self.set_query())
+ self._list()
@swagger.operation(nickname='createPod')
def post(self):