Stop making the database migration backend lazy pluggable

We only have one database migration backend, and this should
not be an extension point that we make public.

LazyPluggable migration backend was added early on but never
used in tree: 4f5c0c64ec

Change-Id: I37a5aa58d81b575bf3e4dfb9b6f8dcca931a889e
This commit is contained in:
Joe Gordon 2015-02-05 12:30:30 -08:00 committed by Matt Riedemann
parent 512b3c6486
commit e3d3d87202
1 changed files with 2 additions and 5 deletions

View File

@ -16,12 +16,9 @@
"""Database setup and migration commands."""
from nova import utils
from nova.db.sqlalchemy import migration
IMPL = utils.LazyPluggable('backend',
config_group='database',
sqlalchemy='nova.db.sqlalchemy.migration')
IMPL = migration
def db_sync(version=None):