From 6b3196ed0c4f89bf65ddff0274ca2f0c58200e1c Mon Sep 17 00:00:00 2001 From: jelveh Date: Tue, 21 Apr 2026 17:41:35 -0700 Subject: [PATCH] Increase cached app TTL to 24 hours. Cause, where is your sense of adventure? --- src/backend/src/helpers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/src/helpers.js b/src/backend/src/helpers.js index 2ef22e7280..bc0e212952 100644 --- a/src/backend/src/helpers.js +++ b/src/backend/src/helpers.js @@ -364,7 +364,7 @@ export async function get_app (options) { const cacheApp = async (app) => { if ( ! app ) return; AppRedisCacheSpace.setCachedApp(app, { - ttlSeconds: 300, + ttlSeconds: 24 * 60 * 60, }); }; const isDecoratedAppCacheEntry = (app) => ( @@ -550,7 +550,7 @@ export const get_apps = spanify('get_apps', async (specifiers, options = {}) => const cacheApp = async (app) => { if ( ! app ) return; AppRedisCacheSpace.setCachedApp(app, { - ttlSeconds: 300, + ttlSeconds: 24 * 60 * 60, }); };