Merge "Ignore 'use_tpool' option"

This commit is contained in:
Zuul 2018-03-09 20:32:16 +00:00 committed by Gerrit Code Review
commit c432d9e938
1 changed files with 4 additions and 4 deletions

View File

@ -165,15 +165,15 @@ class _TransactionFactory(object):
'on_engine_create': [],
}
# other options that are defined in oslo.db.options.database_opts
# but do not apply to the standard enginefacade arguments
# (most seem to apply to api.DBAPI).
# other options that are defined in oslo_db.options.database_opts
# or oslo_db.concurrency.tpool_opts but do not apply to the standard
# enginefacade arguments (most seem to apply to api.DBAPI).
self._ignored_cfg = dict(
(k, _Default(None)) for k in [
'db_max_retries', 'db_inc_retry_interval',
'use_db_reconnect',
'db_retry_interval', 'min_pool_size',
'db_max_retry_interval', 'backend'])
'db_max_retry_interval', 'backend', 'use_tpool'])
self._started = False
self._legacy_facade = None