If you call a synchronous function inside an async endpoint, you block everything. One heavy database call, one slow file read, and FastAPI stops handling other requests. Fix: use async libraries. For ...