From 7ba0c66512d4d9bb91f8106f85d684d61580ff71 Mon Sep 17 00:00:00 2001 From: Yulia Portnova <yportnova@mirantis.com> Date: Wed, 4 Sep 2013 10:01:13 +0300 Subject: [PATCH] fixed keystone context --- manila/api/middleware/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manila/api/middleware/auth.py b/manila/api/middleware/auth.py index 7f7c60d146..9475e0bed1 100644 --- a/manila/api/middleware/auth.py +++ b/manila/api/middleware/auth.py @@ -69,7 +69,7 @@ class InjectContext(base_wsgi.Middleware): return self.application -class CinderKeystoneContext(base_wsgi.Middleware): +class ManilaKeystoneContext(base_wsgi.Middleware): """Make a request context from keystone headers""" @webob.dec.wsgify(RequestClass=base_wsgi.Request)