Use fixed window elastic expiry strategy for limiter

This commit is contained in:
Piero Toffanin 2024-07-16 15:11:41 -04:00
parent aaff4dd588
commit 7b75dad479

View file

@ -238,7 +238,8 @@ 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
default_limits_cost=limits_cost,
strategy="fixed-window-elastic-expiry",
)
else:
from .no_limiter import Limiter