Raise default S3 backend max-age for manifests to 60s.

The default of 5s is way too aggressive and results in poor experience.
This commit is contained in:
Catherine
2025-09-17 15:16:02 +00:00
parent 705685e918
commit 13c72015a7
+1 -1
View File
@@ -322,7 +322,7 @@ func NewS3Backend(
siteCacheOptions, err := defaultCacheConfig[string, *CachedManifest](
config.Backend.S3.SiteCache,
5*time.Second, 16*1048576,
60*time.Second, 16*1048576,
func(key string, value *CachedManifest) uint32 { return value.weight })
if err != nil {
return nil, err