From 7abfe54177d81efc605f3487b0670de93d751890 Mon Sep 17 00:00:00 2001 From: ff137 Date: Wed, 12 Feb 2025 11:44:54 +0200 Subject: [PATCH] :test_tube: Debug: waypoint coroutine not awaited --- waypoint/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/waypoint/main.py b/waypoint/main.py index 3ff9f6576..05669aa28 100644 --- a/waypoint/main.py +++ b/waypoint/main.py @@ -1,5 +1,6 @@ import asyncio import os +import tracemalloc from contextlib import asynccontextmanager from dependency_injector.wiring import Provide, inject @@ -17,6 +18,8 @@ logger = get_logger(__name__) +tracemalloc.start() + @asynccontextmanager async def app_lifespan(_: FastAPI):