From aca3c1b0acdb701c5d1443eb9ae2fcd1cf3d5ca2 Mon Sep 17 00:00:00 2001 From: martian56 Date: Sat, 14 Mar 2026 18:06:23 +0400 Subject: [PATCH] [FIX] Fix Rate limiting issue --- api/app/app/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/app/app/main.py b/api/app/app/main.py index 13f3b1f..f3bfe95 100644 --- a/api/app/app/main.py +++ b/api/app/app/main.py @@ -6,7 +6,6 @@ from app.api.router import api_router from app.config import settings -from app.core.rate_limit import RateLimitMiddleware @asynccontextmanager @@ -37,7 +36,6 @@ async def lifespan(app: FastAPI) -> AsyncIterator[None]: allow_headers=["*"], ) -app.add_middleware(RateLimitMiddleware, requests_per_minute=120) app.include_router(api_router, prefix="")