Don't override default value of config option sqlite_db

This is follow up of aa3d521492,
we removed usage of sqlite_db in that commit, but forget to
remove code of overriding its default value.

Change-Id: I9692c71ea014ceff681ec56b68fc2f7db87f5a4c
This commit is contained in:
ChangBo Guo(gcb) 2016-08-25 18:56:48 +08:00
parent 73cd969579
commit dbabdcfebc
1 changed files with 0 additions and 1 deletions

View File

@ -46,7 +46,6 @@ db_opts = [
CONF = cfg.CONF
CONF.register_opts(db_opts)
db_options.set_defaults(CONF)
CONF.set_default('sqlite_db', 'karbor.sqlite', group='database')
_BACKEND_MAPPING = {'sqlalchemy': 'karbor.db.sqlalchemy.api'}