Skip to content

Commit

Permalink
increase default throttle rate
Browse files Browse the repository at this point in the history
  • Loading branch information
gagantrivedi committed Oct 18, 2023
1 parent 5134129 commit 7eb5e8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/app/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@

LOGIN_THROTTLE_RATE = env("LOGIN_THROTTLE_RATE", "20/min")
SIGNUP_THROTTLE_RATE = env("SIGNUP_THROTTLE_RATE", "10000/min")
USER_THROTTLE_RATE = env("USER_THROTTLE_RATE", "10/second")
USER_THROTTLE_RATE = env("USER_THROTTLE_RATE", "500/min")
REST_FRAMEWORK = {
"DEFAULT_PERMISSION_CLASSES": ["rest_framework.permissions.IsAuthenticated"],
"DEFAULT_AUTHENTICATION_CLASSES": (
Expand Down

0 comments on commit 7eb5e8e

Please sign in to comment.