summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Gundlach <michael.gundlach@rackspace.com>2010-09-07 16:00:01 -0400
committerMichael Gundlach <michael.gundlach@rackspace.com>2010-09-07 16:00:01 -0400
commit0cbde24bfc3ad13a67325e6c0e08d4650d05ea05 (patch)
tree5051de7d19dc2c68342a2902a5df8126bba8bcc7
parent59adf260b59dcdcc6bc2df3260a331a4a05f535c (diff)
downloadnova-0cbde24bfc3ad13a67325e6c0e08d4650d05ea05.tar.gz
nova-0cbde24bfc3ad13a67325e6c0e08d4650d05ea05.tar.xz
nova-0cbde24bfc3ad13a67325e6c0e08d4650d05ea05.zip
Oops, APIRequestContext's signature has changed
-rw-r--r--nova/objectstore/handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/objectstore/handler.py b/nova/objectstore/handler.py
index 49c647b4e..aabf6831f 100644
--- a/nova/objectstore/handler.py
+++ b/nova/objectstore/handler.py
@@ -131,7 +131,7 @@ def get_context(request):
request.uri,
headers=request.getAllHeaders(),
check_type='s3')
- return context.APIRequestContext(None, user, project)
+ return context.APIRequestContext(user, project)
except exception.Error as ex:
logging.debug("Authentication Failure: %s", ex)
raise exception.NotAuthorized