diff options
author | Zhongyue Luo <lzyeval@gmail.com> | 2012-05-21 17:01:15 +0800 |
---|---|---|
committer | Zhongyue Luo <lzyeval@gmail.com> | 2012-05-21 17:01:15 +0800 |
commit | 0d4c0e7fbc8bdd0d9c9503b09cf4590b696daf60 (patch) | |
tree | 831a48f5c43c08bb403790d5e2ef0ecd526a089e /nova | |
parent | ebf523174f047d5ee727e92e761bc63346bcd1ba (diff) | |
download | nova-0d4c0e7fbc8bdd0d9c9503b09cf4590b696daf60.tar.gz nova-0d4c0e7fbc8bdd0d9c9503b09cf4590b696daf60.tar.xz nova-0d4c0e7fbc8bdd0d9c9503b09cf4590b696daf60.zip |
cert/manager.py not using crypto.fetch_crl
Fixes bug #1002212
Change-Id: Ie4021e9ce150a9806826d0934d30ecd0d994f7e0
Diffstat (limited to 'nova')
-rw-r--r-- | nova/cert/manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/cert/manager.py b/nova/cert/manager.py index 840a782c5..992f5d96b 100644 --- a/nova/cert/manager.py +++ b/nova/cert/manager.py @@ -63,7 +63,7 @@ class CertManager(manager.Manager): def fetch_crl(self, context, project_id): """Get crl for a project""" - return crypto.fetch_ca(project_id) + return crypto.fetch_crl(project_id) def decrypt_text(self, context, project_id, text): """Decrypt base64 encoded text using the projects private key.""" |