repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
433e9d1
parent
c8e853b
author
Eric Bower
date
2026-04-19 23:29:44 -0400 EDT
fix(pgs): typo
1 files changed,  +1, -1
M pkg/apps/pgs/web_asset_handler.go
+1, -1
1@@ -271,7 +271,7 @@ func (h *ApiAssetHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
2 	//   long TTL for shared cache (our cache),
3 	//   then must revalidate using ETag
4 	cc := fmt.Sprintf(
5-		"max-age=60, s-maxage=%0.f must-revalidate",
6+		"max-age=60, s-maxage=%0.f, must-revalidate",
7 		h.Cfg.CacheTTL.Seconds(),
8 	)
9 	w.Header().Set("cache-control", cc)