Stop using config option sqlite_db

Config option sqlite_db is deprecated in
0a1bae9859079fb21a03716be947c5f1da6db0a2, and now we use
database with sqlite in memory mode[1] like this:

  CONF.set_default('connection', "sqlite://", group='database')

here not use config option sqlite_db any more, so don't need override
its default value.
[1]http://docs.sqlalchemy.org/en/rel_1_0/core/engines.html#sqlite

Change-Id: I487b80107a84d6442b700afbdbafbb96fc311b1d
This commit is contained in:
Lu lei 2016-08-25 18:28:03 +08:00 committed by ChangBo Guo(gcb)
parent 33bd146055
commit 81e6b0ae8c
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ def set_db_defaults():
db_options.set_defaults(
cfg.CONF,
connection='sqlite://',
sqlite_db='', max_pool_size=10,
max_pool_size=10,
max_overflow=20, pool_timeout=10)
set_db_defaults()