Merge "Replace sqlite with sqlalchemy"

This commit is contained in:
Jenkins 2014-11-25 08:41:15 +00:00 committed by Gerrit Code Review
commit cb45cc6fa9
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
<th colspan="2">[drivers]</th>
</tr>
<tr>
<td>storage = sqlite</td>
<td>storage = sqlalchemy</td>
<td>(StrOpt) Storage driver to use.</td>
</tr>
<tr>

View File

@ -57,7 +57,7 @@ _GENERAL_OPTIONS = (
_DRIVER_OPTIONS = (
cfg.StrOpt('transport', default='wsgi',
help='Transport driver to use.'),
cfg.StrOpt('storage', default='sqlite',
cfg.StrOpt('storage', default='sqlalchemy',
help='Storage driver to use.'),
)

View File

@ -28,7 +28,7 @@ from zaqar.queues.storage import utils
LOG = log.getLogger(__name__)
_CATALOG_OPTIONS = (
cfg.StrOpt('storage', default='sqlite',
cfg.StrOpt('storage', default='sqlalchemy',
help='Catalog storage driver.'),
)