mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-24 17:01:00 +00:00
Fix limiter initialization
This commit is contained in:
parent
67453b0c15
commit
e74cdd4db3
1 changed files with 2 additions and 1 deletions
|
@ -161,7 +161,6 @@ def create_app(args):
|
|||
from flask_limiter import Limiter
|
||||
|
||||
limiter = Limiter(
|
||||
bp,
|
||||
key_func=get_remote_address,
|
||||
default_limits=get_routes_limits(
|
||||
args.req_limit, args.daily_req_limit, api_keys_db
|
||||
|
@ -997,6 +996,8 @@ def create_app(args):
|
|||
else:
|
||||
app.register_blueprint(bp)
|
||||
|
||||
limiter.init_app(app)
|
||||
|
||||
swag = swagger(app)
|
||||
swag["info"]["version"] = get_version()
|
||||
swag["info"]["title"] = "LibreTranslate"
|
||||
|
|
Loading…
Reference in a new issue