summaryrefslogtreecommitdiff
path: root/nova/keymgr/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/keymgr/__init__.py')
-rw-r--r--nova/keymgr/__init__.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/nova/keymgr/__init__.py b/nova/keymgr/__init__.py
index 79880b4d70..5e10b395b7 100644
--- a/nova/keymgr/__init__.py
+++ b/nova/keymgr/__init__.py
@@ -14,18 +14,11 @@
# under the License.
-from oslo_config import cfg
from oslo_utils import importutils
+import nova.conf
-keymgr_opts = [
- cfg.StrOpt('api_class',
- default='nova.keymgr.conf_key_mgr.ConfKeyManager',
- help='The full class name of the key manager API class'),
-]
-
-CONF = cfg.CONF
-CONF.register_opts(keymgr_opts, group='keymgr')
+CONF = nova.conf.CONF
def API():