Skip to content
Snippets Groups Projects
Verified Commit 34ee6012 authored by Tanner Prestegard's avatar Tanner Prestegard
Browse files

Upgrading unauthenticated user throttle

Since the web view makes a few API requests to load log messages and
other content, we have to allow more requests. Also, it sounds like
users at a university might all appear to be on the same IP address,
so we want to try to account for that.
parent 1b374eb2
Branches
Tags
No related merge requests found
......@@ -365,7 +365,7 @@ REST_FRAMEWORK = {
'api.throttling.BurstAnonRateThrottle',
),
'DEFAULT_THROTTLE_RATES': {
'anon_burst': '3/second',
'anon_burst': '300/minute',
'event_creation': '1/second',
'annotation' : '10/second',
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment