Skip to content

Commit

Permalink
Increase the rate of allowed requests (#1969)
Browse files Browse the repository at this point in the history
* Increase the rate of allowed requests

* Update CHANGELOG.md
  • Loading branch information
mpeven authored Aug 4, 2020
1 parent 9262536 commit 737e948
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>)
- 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>)
- Increase rate of throttling policy for unauthenticated users (<https://github.com/opencv/cvat/pull/1969>)

## [1.1.0-alpha] - 2020-06-30
### Added
Expand Down
2 changes: 1 addition & 1 deletion cvat/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def generate_ssh_keys():
'rest_framework.throttling.AnonRateThrottle',
],
'DEFAULT_THROTTLE_RATES': {
'anon': '100/hour',
'anon': '100/minute',
},
}

Expand Down

0 comments on commit 737e948

Please sign in to comment.