Commit 3e245726 by Michael Frey

increase staff user rate limit

parent 02410818
......@@ -575,7 +575,7 @@ class EnrollmentTest(EnrollmentTestMixin, ModuleStoreTestCase, APITestCase, Ente
self.assert_enrollment_status(username=staff_user.username, expected_status=status.HTTP_200_OK)
# Once the limit is reached, subsequent requests should fail
for attempt in xrange(rate_limit + 10):
for attempt in xrange(rate_limit + 50):
self.assert_enrollment_status(username=staff_user.username, expected_status=status. HTTP_429_TOO_MANY_REQUESTS)
def test_enrollment_throttle_for_service(self):
......
......@@ -75,7 +75,7 @@ class EnrollmentUserThrottle(UserRateThrottle, ApiKeyPermissionMixIn):
"""Limit the number of requests users can make to the enrollment API."""
THROTTLE_RATES = {
'user': '40/minute',
'staff': '400/minute',
'staff': '600/minute',
}
def allow_request(self, request, view):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment