From 737e94828e24632d1c5cae84bbae0da8ac633c55 Mon Sep 17 00:00:00 2001 From: Mike Peven Date: Tue, 4 Aug 2020 04:07:08 -0400 Subject: [PATCH] Increase the rate of allowed requests (#1969) * Increase the rate of allowed requests * Update CHANGELOG.md --- CHANGELOG.md | 1 + cvat/settings/base.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f85497f78e2..99de8a72724 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 5b373c5838e..a224ff04fae 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', }, }