summaryrefslogtreecommitdiff
path: root/oslo_db
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-10-30 16:37:02 +0000
committerGerrit Code Review <review@openstack.org>2020-10-30 16:37:02 +0000
commit503db6071acebdabffa994ef86829eb438249db4 (patch)
treea17b05ee8041847151f97b036d024d86aad39cd1 /oslo_db
parent2ca50a4ca76e0eca792c03bb1f8b6d4a22d56edb (diff)
parent642dac165fb1649e01e8370acbc2b709299166c6 (diff)
downloadoslo-db-503db6071acebdabffa994ef86829eb438249db4.tar.gz
Merge "Deprecate the 'oslo_db.sqlalchemy.migration_cli' module"8.5.0
Diffstat (limited to 'oslo_db')
-rw-r--r--oslo_db/sqlalchemy/migration_cli/manager.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/oslo_db/sqlalchemy/migration_cli/manager.py b/oslo_db/sqlalchemy/migration_cli/manager.py
index 4268331..812d4bc 100644
--- a/oslo_db/sqlalchemy/migration_cli/manager.py
+++ b/oslo_db/sqlalchemy/migration_cli/manager.py
@@ -10,6 +10,7 @@
# License for the specific language governing permissions and limitations
# under the License.
+from debtcollector import removals
import sqlalchemy
from stevedore import enabled
@@ -24,6 +25,12 @@ def check_plugin_enabled(ext):
return ext.obj.enabled
+@removals.remove(
+ message='Support for sqlalchemy-migrate and with it the migration manager '
+ 'is deprecated for removal; consider migrating to and using alembic '
+ 'directly',
+ version='8.3.0'
+)
class MigrationManager(object):
def __init__(self, migration_config, engine=None):