From e1c36e657c8fcaf124493799579bf586e6097df0 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Thu, 31 Jan 2019 13:19:14 -0600 Subject: [PATCH] Bumping up the request limit on register --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 7066a30..036bd57 100644 --- a/app.py +++ b/app.py @@ -156,7 +156,7 @@ def index(): @app.route('/register', methods=('GET', 'POST')) -@limiter.limit("2/minute") +@limiter.limit("5/minute") def registration(): form = RegistrationForm() if form.validate_on_submit():