summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/context.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/nova/context.py b/nova/context.py
index 9555f9fc1..bca5dec0f 100644
--- a/nova/context.py
+++ b/nova/context.py
@@ -78,7 +78,12 @@ class RequestContext(object):
request_id = generate_request_id()
self.request_id = request_id
self.auth_token = auth_token
+
+ # NOTE(markmc): this attribute is currently only used by the
+ # rs_limits turnstile pre-processor.
+ # See https://lists.launchpad.net/openstack/msg12200.html
self.quota_class = quota_class
+
if overwrite or not hasattr(local.store, 'context'):
self.update_store()