From c8dd6e5d58e5bd52c44046428b1998389cb0c8fd Mon Sep 17 00:00:00 2001 From: Matthew Piatetsky Date: Mon, 29 Jun 2020 11:20:35 -0400 Subject: [PATCH] Temporarily increase default throttle rates for service user to handle increased throughput against data sharing consent endpoint --- lms/envs/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/envs/common.py b/lms/envs/common.py index e3210d4dac..4d459a6019 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -2596,7 +2596,7 @@ REST_FRAMEWORK = { 'URL_FORMAT_OVERRIDE': None, 'DEFAULT_THROTTLE_RATES': { 'user': '60/minute', - 'service_user': '120/minute', + 'service_user': '800/minute', 'registration_validation': '30/minute', }, }