summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
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)