From a5be4f19de0be06ec095bf5341cb9ff183da932d Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Mon, 6 Apr 2026 23:01:27 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20default=20max=20cache?= =?UTF-8?q?=20time=20for=20secret=20value=20retrieval=20to=2030=20days?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libraries/deno-commons-mod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/deno-commons-mod.ts b/libraries/deno-commons-mod.ts index 632ea00..b74697c 100644 --- a/libraries/deno-commons-mod.ts +++ b/libraries/deno-commons-mod.ts @@ -1675,7 +1675,7 @@ export async function getSecretValue( { tryRefresh: options?.tryRefresh, defaultCacheTimeSecs: options?.defaultCacheTimeSecs ?? 3600, - maxCacheTimeSecs: options?.maxCacheTimeSecs ?? 3600 * 24, + maxCacheTimeSecs: options?.maxCacheTimeSecs ?? 3600 * 24 * 30, }, ); }