summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorAlex Meade <alex.meade@rackspace.com>2011-08-08 13:50:31 -0400
committerAlex Meade <alex.meade@rackspace.com>2011-08-08 13:50:31 -0400
commit6107aeceab2f3226bb1f3bff820cdcc2bc9be3cc (patch)
tree8b4e0dc39ad3e3bcdbb92fa2cc56fd9115f3831f /nova/api
parentb2b5131ac2ab532afb1a3e507992d60b15dd3855 (diff)
downloadnova-6107aeceab2f3226bb1f3bff820cdcc2bc9be3cc.tar.gz
nova-6107aeceab2f3226bb1f3bff820cdcc2bc9be3cc.tar.xz
nova-6107aeceab2f3226bb1f3bff820cdcc2bc9be3cc.zip
Don't do anything with tenant_id for now
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/wsgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/wsgi.py b/nova/api/openstack/wsgi.py
index d834a62d8..34c31260b 100644
--- a/nova/api/openstack/wsgi.py
+++ b/nova/api/openstack/wsgi.py
@@ -487,7 +487,7 @@ class Resource(wsgi.Application):
return faults.Fault(webob.exc.HTTPBadRequest(explanation=msg))
if 'tenant_id' in args:
- request.environ['nova.context']['tenant_id'] = args.pop("tenant_id")
+ args.pop("tenant_id")
try:
action_result = self.dispatch(request, action, args)