mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
Add import in docs. [ci skip]
This commit is contained in:
parent
e7eccac6df
commit
febaa4db00
|
@ -184,6 +184,8 @@ If the `.wait()` method is implemented and the request is throttled, then a `Ret
|
||||||
|
|
||||||
The following is an example of a rate throttle, that will randomly throttle 1 in every 10 requests.
|
The following is an example of a rate throttle, that will randomly throttle 1 in every 10 requests.
|
||||||
|
|
||||||
|
import random
|
||||||
|
|
||||||
class RandomRateThrottle(throttling.BaseThrottle):
|
class RandomRateThrottle(throttling.BaseThrottle):
|
||||||
def allow_request(self, request, view):
|
def allow_request(self, request, view):
|
||||||
return random.randint(1, 10) == 1
|
return random.randint(1, 10) == 1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user