mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-21 23:41:01 +00:00
Use moving window strategy for limiter
This commit is contained in:
parent
7b75dad479
commit
8e85c04558
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ def create_app(args):
|
|||
storage_uri=args.req_limit_storage,
|
||||
default_limits_deduct_when=lambda req: True, # Force cost to be called after the request
|
||||
default_limits_cost=limits_cost,
|
||||
strategy="fixed-window-elastic-expiry",
|
||||
strategy="moving-window",
|
||||
)
|
||||
else:
|
||||
from .no_limiter import Limiter
|
||||
|
|
Loading…
Reference in a new issue