diff options
| author | Alex Meade <alex.meade@rackspace.com> | 2011-08-08 13:50:31 -0400 |
|---|---|---|
| committer | Alex Meade <alex.meade@rackspace.com> | 2011-08-08 13:50:31 -0400 |
| commit | 6107aeceab2f3226bb1f3bff820cdcc2bc9be3cc (patch) | |
| tree | 8b4e0dc39ad3e3bcdbb92fa2cc56fd9115f3831f /nova/api | |
| parent | b2b5131ac2ab532afb1a3e507992d60b15dd3855 (diff) | |
| download | nova-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.py | 2 |
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) |
