Merge "Force oslo_service backend to threading in mistral-db-manage"

This commit is contained in:
Zuul
2025-09-11 11:24:32 +00:00
committed by Gerrit Code Review

View File

@@ -13,6 +13,12 @@
"""Starter script for mistral-db-manage."""
# NOTE(amorin)
# Hardcode the threading backend to avoid using eventlet until this will
# eventually become the default
import oslo_service.backend as service_backend
service_backend.init_backend(service_backend.BackendType.THREADING)
import os
from alembic import command as alembic_cmd