From fb7b98da0b393170d081ee91a951e2c8679addaa Mon Sep 17 00:00:00 2001 From: Michael Frey Date: Thu, 17 Aug 2017 16:23:10 -0400 Subject: [PATCH] increase staff user rate limit --- common/djangoapps/enrollment/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/enrollment/views.py b/common/djangoapps/enrollment/views.py index 68e0c33cc6..17f6079c80 100644 --- a/common/djangoapps/enrollment/views.py +++ b/common/djangoapps/enrollment/views.py @@ -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):