mirror of
https://github.com/chubin/wttr.in
synced 2025-01-26 02:34:59 +00:00
proxy: increased expiration time
This commit is contained in:
parent
a09e61594a
commit
ff9d0353ed
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ def _cache_file(path, query):
|
|||
|
||||
digest = hashlib.sha1(("%s %s" % (path, query)).encode("utf-8")).hexdigest()
|
||||
digest_number = ord(digest[0].upper())
|
||||
expiry_interval = 60*(digest_number+20)
|
||||
expiry_interval = 60*(digest_number+30)
|
||||
|
||||
timestamp = "%010d" % (int(time.time())//expiry_interval*expiry_interval)
|
||||
filename = os.path.join(PROXY_CACHEDIR, timestamp, path, query)
|
||||
|
|
Loading…
Reference in a new issue