diff options
author | Brian Waldon <bcwaldon@gmail.com> | 2012-02-09 16:25:45 -0800 |
---|---|---|
committer | Brian Waldon <bcwaldon@gmail.com> | 2012-02-10 17:42:27 -0800 |
commit | 0e775d628b30f16a200d2b1f540d76ba24fbb351 (patch) | |
tree | 0b9dc22a55d26efe657171c43acc1c988ad4c326 /keystone/common | |
parent | d049c19227d2702c5c5ac545d195465eac55246d (diff) | |
download | keystone-0e775d628b30f16a200d2b1f540d76ba24fbb351.tar.gz keystone-0e775d628b30f16a200d2b1f540d76ba24fbb351.tar.xz keystone-0e775d628b30f16a200d2b1f540d76ba24fbb351.zip |
Add pagination to GET /tokens
* Partially fixes bug 928049
Change-Id: I21943dcc7cea4dabfab672e84fe507e78e430de4
Diffstat (limited to 'keystone/common')
-rw-r--r-- | keystone/common/wsgi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/keystone/common/wsgi.py b/keystone/common/wsgi.py index ee5aac6b..a5ae47fc 100644 --- a/keystone/common/wsgi.py +++ b/keystone/common/wsgi.py @@ -165,6 +165,7 @@ class Application(BaseApplication): # allow middleware up the stack to provide context & params context = req.environ.get('openstack.context', {}) + context['query_string'] = dict(req.params.iteritems()) params = req.environ.get('openstack.params', {}) params.update(arg_dict) |