Issue-2756: updated alembic setup to account for asyncpg mode (#3431)

This commit is contained in:
Alex Angin
2025-09-16 00:33:51 -04:00
committed by GitHub
parent b6c1e16c96
commit 323952169e
5 changed files with 140 additions and 25 deletions

View File

@@ -1,4 +1,5 @@
import asyncio
import logging
import sys
import typer
@@ -37,4 +38,5 @@ async def start_services(server_only: bool = False) -> None:
except Exception as e:
console.print(f"[bold red]Error starting services: {str(e)}[/bold red]")
logging.error("Startup failed", exc_info=True)
raise typer.Exit(1)