From 49e8d0c551c6d2e8a0747e03100af385950215ea Mon Sep 17 00:00:00 2001 From: Anna Claire Fields <58918237+franklovefrank@users.noreply.github.com> Date: Fri, 21 Nov 2025 11:42:30 +0100 Subject: [PATCH] Merge pull request #29695 from overleaf/change-auto-compile-rate-limit Change auto compile rate limit GitOrigin-RevId: 9f689c4811ad03ebbbc8cf0abb5f0ac867356873 --- services/web/app/src/router.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/app/src/router.mjs b/services/web/app/src/router.mjs index d4af39c7e6..1d50c2acdb 100644 --- a/services/web/app/src/router.mjs +++ b/services/web/app/src/router.mjs @@ -91,8 +91,8 @@ const rateLimiters = { duration: 60, }), compileProjectHttp: new RateLimiter('compile-project-http', { - points: 800, - duration: 60 * 60, + points: 200, + duration: 10 * 60, }), confirmEmail: new RateLimiter('confirm-email', { points: 10,