diff options
| author | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-09-07 16:00:01 -0400 |
|---|---|---|
| committer | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-09-07 16:00:01 -0400 |
| commit | 0cbde24bfc3ad13a67325e6c0e08d4650d05ea05 (patch) | |
| tree | 5051de7d19dc2c68342a2902a5df8126bba8bcc7 | |
| parent | 59adf260b59dcdcc6bc2df3260a331a4a05f535c (diff) | |
| download | nova-0cbde24bfc3ad13a67325e6c0e08d4650d05ea05.tar.gz nova-0cbde24bfc3ad13a67325e6c0e08d4650d05ea05.tar.xz nova-0cbde24bfc3ad13a67325e6c0e08d4650d05ea05.zip | |
Oops, APIRequestContext's signature has changed
| -rw-r--r-- | nova/objectstore/handler.py | 2 |
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 |
