NewLanded

Results 1 issues of NewLanded

Hello everybody, I have a question about background task, there is an example This is running fine. ```python @app.post("/") def user(background_tasks: BackgroundTasks): background_tasks.add_task(func_example) ``` But when I raise an exception,...

question