Revert "pick deque instead of list (#7849)" (#7872)

This reverts commit ebcb8d5310.
This commit is contained in:
Tom Christie 2021-03-26 09:17:47 +00:00 committed by GitHub
parent dffa612134
commit 72c155d8f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,6 @@
Provides various throttling policies.
"""
import time
from collections import deque
from django.core.cache import cache as default_cache
from django.core.exceptions import ImproperlyConfigured
@ -121,7 +120,7 @@ class SimpleRateThrottle(BaseThrottle):
if self.key is None:
return True
self.history = self.cache.get(self.key, deque())
self.history = self.cache.get(self.key, [])
self.now = self.timer()
# Drop any requests from the history which have now passed the