diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-06-24 04:11:59 +0100 |
|---|---|---|
| committer | andy <github@anarkystic.com> | 2010-06-24 04:11:59 +0100 |
| commit | 3dcc46bc5cea6011e578bf67391daef2789a8505 (patch) | |
| tree | 50a918aad346f94f6a8ab862ad1a3888533ba054 /nova/auth | |
| parent | c4c3167178819fdf3e34fc9e81a6d2361aef7605 (diff) | |
fix fakeldap so it can use redis keeper
Diffstat (limited to 'nova/auth')
| -rw-r--r-- | nova/auth/fakeldap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/auth/fakeldap.py b/nova/auth/fakeldap.py index 33003f057..feb2ac14a 100644 --- a/nova/auth/fakeldap.py +++ b/nova/auth/fakeldap.py @@ -40,7 +40,7 @@ def initialize(uri): class FakeLDAP(object): def __init__(self, _uri): - self.keeper = datastore.SqliteKeeper('fakeldap') #Redis keeper never works here... + self.keeper = datastore.Keeper('fakeldap') if self.keeper['objects'] is None: self.keeper['objects'] = {} |
