bugfix for flask-limitor
All checks were successful
Build & Push / Build & Push image (push) Successful in 36s

This commit is contained in:
2026-02-28 23:17:44 +01:00
parent 5d0e4f9c91
commit f0fccfa319

View File

@@ -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',
)