mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
Rate limiting insta-fetching to 10 fetches per 10 minutes.
This commit is contained in:
parent
3ed3b0cde3
commit
5dcfc20a84
1 changed files with 2 additions and 1 deletions
|
@ -250,6 +250,7 @@ def load_feed_settings(request, feed_id):
|
|||
|
||||
return stats
|
||||
|
||||
@ratelimit(minutes=10, requests=10)
|
||||
@json.json_view
|
||||
def exception_retry(request):
|
||||
user = get_user(request)
|
||||
|
|
Loading…
Add table
Reference in a new issue