From 759305a7d6514fa28c2e5f4b9ed4e4f47a1a4633 Mon Sep 17 00:00:00 2001 From: joaohortsenado Date: Sat, 14 Mar 2026 08:15:27 -0300 Subject: [PATCH] Aumenta RATE_LIMITER_RATE default de 10/m para 35/m --- 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/