Update maximum expiry once per day

This commit is contained in:
David Turner 2015-10-11 07:28:52 +00:00
parent 5b4d5ced3b
commit 8dc54fc921

View File

@ -240,5 +240,5 @@ warpEnv site = do
getGetMaxExpires :: IO (IO Text)
getGetMaxExpires = mkAutoUpdate defaultUpdateSettings
{ updateAction = getCurrentMaxExpiresRFC1123
, updateFreq = 60 * 60 * 1000000 -- Update once per hour
, updateFreq = 24 * 60 * 60 * 1000000 -- Update once per day
}