e43e7e7101
Since the default engine used by the new sqlalchemy driver is sqlite, it doesn't make sense to keep the sqlite driver around. This patch replaces all usages of `sqlite` with `sqlalchemy`. Although sqlite is being deprecated, the patch keeps the entry point for backwards compatibility so that environments currently using the sqlite backend won't be suddenly broken. Implement blueprint: sql-storage-driver Change-Id: Ib7e32fa56ab0c6621dc9a888feb6b0e4981b4e91
14 lines
174 B
Plaintext
14 lines
174 B
Plaintext
[DEFAULT]
|
|
debug = False
|
|
verbose = False
|
|
admin_mode = False
|
|
|
|
[drivers]
|
|
transport = wsgi
|
|
storage = sqlalchemy
|
|
|
|
[drivers:transport:wsgi]
|
|
bind = 0.0.0.0
|
|
port = 8888
|
|
workers = 20
|