From 0fdefb284e46071bee1c94d9c3dbd32d84bbd9e6 Mon Sep 17 00:00:00 2001 From: Wang Qi Date: Tue, 28 Jul 2026 13:53:56 +0800 Subject: [PATCH] Sandbox: bump rate limit from 5/second to 60/second (#928) (#17469) --- agent/sandbox/executor_manager/api/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/sandbox/executor_manager/api/handlers.py b/agent/sandbox/executor_manager/api/handlers.py index 9478a0bfd4..2a92122b00 100644 --- a/agent/sandbox/executor_manager/api/handlers.py +++ b/agent/sandbox/executor_manager/api/handlers.py @@ -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")