Sandbox: bump rate limit from 5/second to 60/second (#928) (#17469)

This commit is contained in:
Wang Qi
2026-07-28 13:53:56 +08:00
committed by GitHub
parent 9b0719fa94
commit 0fdefb284e

View File

@@ -29,7 +29,7 @@ async def healthz_handler():
return {"status": "ok"}
@limiter.limit("5/second")
@limiter.limit("60/second")
async def run_code_handler(req: CodeExecutionRequest, request: Request):
logger.info("🟢 Received /run request")