Merge "Register DB options independently of engine"

This commit is contained in:
Jenkins 2013-03-12 02:02:01 +00:00 committed by Gerrit Code Review
commit 36672da65e
3 changed files with 10 additions and 1 deletions

View File

@ -119,9 +119,12 @@ def register_api_opts():
rpc.set_defaults(control_exchange='heat')
def register_db_opts():
cfg.CONF.register_opts(db_opts)
def register_engine_opts():
cfg.CONF.register_opts(engine_opts)
cfg.CONF.register_opts(db_opts)
cfg.CONF.register_opts(service_opts)
cfg.CONF.register_opts(rpc_opts)
rpc.set_defaults(control_exchange='heat')

View File

@ -15,4 +15,8 @@
'''Database abstraction for Heat.'''
from heat.common import config
config.register_db_opts()
from heat.db.api import *

View File

@ -15,3 +15,5 @@
from heat.common import config
config.register_engine_opts()
from heat import db # pyflakes_bypass register DB options