aboutsummaryrefslogtreecommitdiff
path: root/cmd/xedn/main.go
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2023-02-23 16:20:57 -0500
committerXe Iaso <me@xeiaso.net>2023-02-23 16:20:57 -0500
commit9afc37eaed75ad4cf60302be8494303bb4db3fcc (patch)
tree3dbd6a596d6f4f457e32cefaf7e6974e4e662bf6 /cmd/xedn/main.go
parent5be5a8fd26bf2318201652872a42e68618f87510 (diff)
downloadx-9afc37eaed75ad4cf60302be8494303bb4db3fcc.tar.xz
x-9afc37eaed75ad4cf60302be8494303bb4db3fcc.zip
bring back portable services
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'cmd/xedn/main.go')
-rw-r--r--cmd/xedn/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/xedn/main.go b/cmd/xedn/main.go
index 377c904..7044060 100644
--- a/cmd/xedn/main.go
+++ b/cmd/xedn/main.go
@@ -130,14 +130,14 @@ func (dc *Cache) Save(dir string, resp *http.Response) error {
return err
}
- diesAt := time.Now().Add(604800 * time.Second).Format(http.TimeFormat)
+ diesAt := time.Now().AddDate(0, 0, 7).Format(http.TimeFormat)
if err := bkt.Put([]byte("diesAt"), []byte(diesAt)); err != nil {
return err
}
// cache control headers
- resp.Header.Set("Cache-Control", "max-age:604800")
+ resp.Header.Set("Cache-Control", "max-age:604800") // one week
resp.Header.Set("Expires", diesAt)
return nil