Merge "change database conf name"

This commit is contained in:
Zuul 2018-02-08 17:01:32 +00:00 committed by Gerrit Code Review
commit dd95ef8eb8
3 changed files with 5 additions and 4 deletions

View File

@ -30,7 +30,8 @@ openstack_client_http_timeout = 360
https_insecure = False https_insecure = False
[database] [database]
db_connection = mysql://root:devstack@127.0.0.1/ord?charset=utf8 connection = mysql+pymysql://root:devstack@127.0.0.1:3306/ord
max_retries = -1
[oslo_messaging_rabbit] [oslo_messaging_rabbit]
rabbit_userid = stackrabbit rabbit_userid = stackrabbit

View File

@ -28,7 +28,7 @@ from oslo_log import log as logging
CONF = cfg.CONF CONF = cfg.CONF
api_db_opts = [ api_db_opts = [
cfg.StrOpt('db_connection', cfg.StrOpt('connection',
help='The SQLAlchemy connection string to use to connect to ' help='The SQLAlchemy connection string to use to connect to '
'the ORD database.', 'the ORD database.',
secret=True), secret=True),
@ -46,7 +46,6 @@ opt_group = cfg.OptGroup(name='database',
title='Options for the database service') title='Options for the database service')
CONF.register_group(opt_group) CONF.register_group(opt_group)
CONF.register_opts(oslo_db_options.database_opts, opt_group) CONF.register_opts(oslo_db_options.database_opts, opt_group)
CONF.register_opts(api_db_opts, opt_group)
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)
@ -58,7 +57,7 @@ _LOCK = threading.Lock()
def _create_facade(conf_group): def _create_facade(conf_group):
return db_session.EngineFacade( return db_session.EngineFacade(
sql_connection=conf_group.db_connection, sql_connection=conf_group.connection,
autocommit=True, autocommit=True,
expire_on_commit=False, expire_on_commit=False,
mysql_sql_mode=conf_group.mysql_sql_mode, mysql_sql_mode=conf_group.mysql_sql_mode,

View File

@ -17,6 +17,7 @@ werkzeug>=0.11.5
eventlet!=0.18.3,>=0.18.2 eventlet!=0.18.3,>=0.18.2
SQLAlchemy>=1.0.10,<1.1.0 SQLAlchemy>=1.0.10,<1.1.0
sqlalchemy-migrate>=0.9.6 sqlalchemy-migrate>=0.9.6
PyMySQL>=0.6.2,!=0.7.7
lxml>=2.3 lxml>=2.3
PasteDeploy>=1.5.0 PasteDeploy>=1.5.0
enum34;python_version=='2.7' or python_version=='2.6' or python_version=='3.3' enum34;python_version=='2.7' or python_version=='2.6' or python_version=='3.3'