From 42e3d0202b170e3a25a67b24cbea2badf27db885 Mon Sep 17 00:00:00 2001 From: Mike Peven Date: Thu, 30 Jul 2020 15:07:59 -0400 Subject: [PATCH 1/2] Increase the rate of allowed requests --- cvat/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvat/settings/base.py b/cvat/settings/base.py index 15fe3264637a..f923d0c24318 100644 --- a/cvat/settings/base.py +++ b/cvat/settings/base.py @@ -153,7 +153,7 @@ def generate_ssh_keys(): 'rest_framework.throttling.AnonRateThrottle', ], 'DEFAULT_THROTTLE_RATES': { - 'anon': '100/hour', + 'anon': '100/minute', }, } From 984aa65dc8c0f4fc4fecb09b29aa0850dee78556 Mon Sep 17 00:00:00 2001 From: Mike Peven Date: Thu, 30 Jul 2020 15:26:31 -0400 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e230af8bed80..3bb4c6e2caa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Stylelint filetype scans () - Fixed toolip closing issue () - Clearing frame cache when close a task () +- Increase rate of throttling policy for unauthenticated users () ### Security -