diff --git a/CHANGELOG.md b/CHANGELOG.md index f85497f78e26..99de8a72724a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,6 +61,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 () ## [1.1.0-alpha] - 2020-06-30 ### Added diff --git a/cvat/settings/base.py b/cvat/settings/base.py index 5b373c5838ec..a224ff04fae6 100644 --- a/cvat/settings/base.py +++ b/cvat/settings/base.py @@ -149,7 +149,7 @@ def generate_ssh_keys(): 'rest_framework.throttling.AnonRateThrottle', ], 'DEFAULT_THROTTLE_RATES': { - 'anon': '100/hour', + 'anon': '100/minute', }, }