diff --git a/rest_framework/throttling.py b/rest_framework/throttling.py index 425f2fcde..880ae54f4 100644 --- a/rest_framework/throttling.py +++ b/rest_framework/throttling.py @@ -132,7 +132,7 @@ class SimpleRateThrottle(BaseThrottle): if len(self.history) >= self.num_requests: return False - return True # self.throttle_success() + return True def throttle_success(self, request, view): """