fix: don't raise on startup errors to allow server start

This commit is contained in:
ajaysi
2026-04-04 17:48:58 +05:30
parent 22c31e6c77
commit ab78a6a158

View File

@@ -597,7 +597,7 @@ async def startup_event():
_assert_router_mounted("podcast")
except Exception as e:
logger.error(f"Error during startup: {e}")
raise
# Don't raise - let the server start anyway
def _assert_router_mounted(router_name: str) -> None: