Fix db config

Olso.db has removed the deprecated sqlite_db options. [1]

[1] https://review.openstack.org/#/c/449437/

Change-Id: I7ec8c94287e82fd51a1af66b864d9f52af5b63c5
This commit is contained in:
Spyros Trigazis 2017-03-28 16:03:33 +02:00
parent bb16a62732
commit 8c85615331
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ sql_opts = [
def register_opts(conf):
conf.register_group(database_group)
conf.register_opts(sql_opts, group=database_group)
options.set_defaults(conf, _DEFAULT_SQL_CONNECTION, 'magnum.sqlite')
options.set_defaults(conf, connection=_DEFAULT_SQL_CONNECTION)
def list_opts():