From f0fccfa3190c6e73290c3505376700d266cbff6b Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 28 Feb 2026 23:17:44 +0100 Subject: [PATCH] bugfix for flask-limitor --- backend/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app.py b/backend/app.py index bc5df5e..7a4bd74 100644 --- a/backend/app.py +++ b/backend/app.py @@ -26,7 +26,7 @@ def _make_limiter(redis_url: str) -> Limiter: key_func=get_remote_address, default_limits=[], storage_uri=redis_url, - strategy='fixed-window-elastic-expiry', + strategy='moving-window', )