From 604d1b72871099b3217ad5e55dfcaf2b079c2405 Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Tue, 27 May 2025 13:35:11 +0300 Subject: [PATCH] avatar: bump cache-control expiry to 12h Signed-off-by: Anirudh Oppiliappan --- avatar/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avatar/src/index.js b/avatar/src/index.js index 5ce90baa..5ac1fddf 100644 --- a/avatar/src/index.js +++ b/avatar/src/index.js @@ -73,7 +73,7 @@ You can't use this directly unforunately since all requests are signed and may o response = new Response(avatarData, { headers: { 'Content-Type': contentType, - 'Cache-Control': 'public, max-age=3600', + 'Cache-Control': 'public, max-age=43200', // 12 h }, }); -- 2.51.2