Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Commit d94e63e

Browse files
committed
temporarily remove IP limiter
1 parent b8e0fdb commit d94e63e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeChallenge/api/vote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def normalize_email(email):
110110

111111

112112
@bp.route("/<int:answer_id>/cast", methods=["POST"])
113-
@limiter.limit("4 per day", key_func=get_remote_address)
113+
# @limiter.limit("4 per day", key_func=get_remote_address)
114114
def vote_cast(answer_id: int):
115115
"""Cast a vote on an Answer"""
116116
max_rank = core.max_rank()

0 commit comments

Comments
 (0)