Skip to content

Commit 352108a

Browse files
committed
further update rate limits
1 parent 06108fe commit 352108a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def create_app(config_filename=None):
3838
app.config.from_pyfile(config_filename)
3939

4040
limiter = Limiter(get_remote_address, app=app, default_limits=[
41-
"100/hour", "5/minute"], headers_enabled=True)
41+
"500/hour", "100/minute"], headers_enabled=True)
4242

4343
app.register_blueprint(v0.blueprint, url_prefix='/v0')
4444
app.register_blueprint(main.main_pages)

0 commit comments

Comments
 (0)