Remove sqlite_db argument from set_defaults

The sqlite_db parameter in [1] was deprecated and has been
removed.  This is now causing the gate to fail.  See [2].
This patch set removes this parameter.

[1] 0a1bae9859/oslo_db/options.py (L17)
[2] http://logs.openstack.org/55/440055/9/check/gate-kosmos-python27-ubuntu-xenial/3326284/console.html

Change-Id: Iae91482d87417642447dabec0859f768f6447b27
This commit is contained in:
Tin Lam 2017-04-15 19:32:34 -05:00
parent 693e83836e
commit 5593ef0b7b
1 changed files with 3 additions and 2 deletions

View File

@ -65,8 +65,9 @@ _SQL_CONNECTION_DEFAULT = 'sqlite://'
# configuration variables - max_pool_size, max_overflow and pool_timeout
db_options.set_defaults(cfg.CONF,
connection=_SQL_CONNECTION_DEFAULT,
sqlite_db='', max_pool_size=10,
max_overflow=20, pool_timeout=10)
max_pool_size=10,
max_overflow=20,
pool_timeout=10)
logging.register_options(cfg.CONF)