Simplified django.utils.cache.get_max_age().
This commit is contained in:
parent
bee4c2baed
commit
3d94ee8500
|
@ -93,10 +93,9 @@ def get_max_age(response):
|
||||||
if not response.has_header('Cache-Control'):
|
if not response.has_header('Cache-Control'):
|
||||||
return
|
return
|
||||||
cc = dict(_to_tuple(el) for el in cc_delim_re.split(response['Cache-Control']))
|
cc = dict(_to_tuple(el) for el in cc_delim_re.split(response['Cache-Control']))
|
||||||
if 'max-age' in cc:
|
|
||||||
try:
|
try:
|
||||||
return int(cc['max-age'])
|
return int(cc['max-age'])
|
||||||
except (ValueError, TypeError):
|
except (ValueError, TypeError, KeyError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue