increase cache ttl to 60 seconds
This commit is contained in:
parent
8537026ef1
commit
3132cc02fe
2 changed files with 3 additions and 3 deletions
|
|
@ -2,7 +2,7 @@ import time
|
|||
|
||||
class Cache(dict):
|
||||
|
||||
def __init__(self, ttl=10):
|
||||
def __init__(self, ttl=60):
|
||||
self._ttl = ttl
|
||||
self._added = {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue