Merge pull request #15845 from edx/mjfrey/increase-enrollment-rate

increase staff user rate limit
This commit is contained in:
Michael Frey
2017-08-17 17:33:54 -04:00
committed by GitHub

View File

@@ -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': '200/minute',
'staff': '300/minute',
}
def allow_request(self, request, view):