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 - 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', }, }