From 491838c14e7fcfff0bd860f725fbd2a0a5ebdd6e Mon Sep 17 00:00:00 2001 From: joaohortsenado <100957576+joaohortsenado@users.noreply.github.com> Date: Sat, 14 Mar 2026 13:18:34 -0300 Subject: [PATCH] Aumenta RATE_LIMITER_RATE default de 10/m para 35/m (#3824) --- sapl/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapl/settings.py b/sapl/settings.py index 185162609..682b275f8 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -316,7 +316,7 @@ MAX_DOC_UPLOAD_SIZE = 150 * 1024 * 1024 # 150MB MAX_IMAGE_UPLOAD_SIZE = 2 * 1024 * 1024 # 2MB DATA_UPLOAD_MAX_MEMORY_SIZE = 10 * 1024 * 1024 # 10MB -RATE_LIMITER_RATE = config('RATE_LIMITER_RATE', default='10/m') +RATE_LIMITER_RATE = config('RATE_LIMITER_RATE', default='35/m') # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/