From 00ae15a9bccdf53c265b66a7eb754dcb0bd76a2c Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 28 Sep 2023 13:59:04 +0200 Subject: [PATCH] Relax rate limit for availability check ? --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 7040067..0ef107b 100644 --- a/app.py +++ b/app.py @@ -64,7 +64,7 @@ def domains(): @app.route("/test/") -@limiter.limit("3 per minute") +@limiter.limit("50 per hour") def availability(domain): error = _validate_domain(domain)