Increase the rate of allowed requests (#1969)

* Increase the rate of allowed requests

* Update CHANGELOG.md
main
Mike Peven 6 years ago committed by GitHub
parent 9262536927
commit 737e94828e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -61,6 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Stylelint filetype scans (<https://github.com/opencv/cvat/pull/1952>) - Stylelint filetype scans (<https://github.com/opencv/cvat/pull/1952>)
- Fixed toolip closing issue (<https://github.com/opencv/cvat/pull/1955>) - Fixed toolip closing issue (<https://github.com/opencv/cvat/pull/1955>)
- Clearing frame cache when close a task (<https://github.com/opencv/cvat/pull/1966>) - Clearing frame cache when close a task (<https://github.com/opencv/cvat/pull/1966>)
- Increase rate of throttling policy for unauthenticated users (<https://github.com/opencv/cvat/pull/1969>)
## [1.1.0-alpha] - 2020-06-30 ## [1.1.0-alpha] - 2020-06-30
### Added ### Added

@ -149,7 +149,7 @@ REST_FRAMEWORK = {
'rest_framework.throttling.AnonRateThrottle', 'rest_framework.throttling.AnonRateThrottle',
], ],
'DEFAULT_THROTTLE_RATES': { 'DEFAULT_THROTTLE_RATES': {
'anon': '100/hour', 'anon': '100/minute',
}, },
} }

Loading…
Cancel
Save