remove debug print

This commit is contained in:
Sébastien Thuret 2021-11-05 14:59:16 +01:00
parent adfdc8c9e5
commit df0c64450a
No known key found for this signature in database
GPG key ID: 4742E2D66933BB08

View file

@ -19,8 +19,6 @@ def setup(violations_threshold=100):
active = True
threshold = violations_threshold
print(violations_threshold)
scheduler = BackgroundScheduler()
scheduler.add_job(func=clear_banned, trigger="interval", weeks=4)
scheduler.start()
@ -33,13 +31,11 @@ def report(request_ip):
if active:
banned[request_ip] = banned.get(request_ip, 0)
banned[request_ip] += 1
print(banned[request_ip])
def decrease(request_ip):
if banned[request_ip] > 0:
banned[request_ip] -= 1
print('decrease', request_ip)
def has_violation(request_ip):