diff options
| author | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-11-30 13:52:46 -0500 |
|---|---|---|
| committer | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-11-30 13:52:46 -0500 |
| commit | 84fdd48fe2db20661f076884810f0c726630452f (patch) | |
| tree | 2c3dd3d762fe3db50560b618dc237f497317882b /nova/api | |
| parent | 41b3faf113d7591e61b03678dc13cd9ef031efbb (diff) | |
Fix unit tests
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/auth.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nova/api/openstack/auth.py b/nova/api/openstack/auth.py index f91742b37..205035915 100644 --- a/nova/api/openstack/auth.py +++ b/nova/api/openstack/auth.py @@ -23,10 +23,7 @@ class Context(object): class BasicApiAuthManager(object): """ Implements a somewhat rudimentary version of OpenStack Auth""" - def __init__(self, host=None, db_driver=None): - if not host: - host = FLAGS.host - self.host = host + def __init__(self, db_driver=None): if not db_driver: db_driver = FLAGS.db_driver self.db = utils.import_object(db_driver) |
