From 5cdaa424ee53f38dd2f97b74d2554ae9d31f5779 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Mon, 17 Mar 2025 08:00:48 +0000 Subject: [PATCH] [clsi] increase CACHE_AGE for output files to 90 minutes (#24322) GitOrigin-RevId: d6208281be8d9a97278f7c60e203de68eb3f7501 --- services/clsi/app/js/OutputCacheManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/clsi/app/js/OutputCacheManager.js b/services/clsi/app/js/OutputCacheManager.js index a7338c356c..ceda308d8d 100644 --- a/services/clsi/app/js/OutputCacheManager.js +++ b/services/clsi/app/js/OutputCacheManager.js @@ -103,7 +103,7 @@ module.exports = OutputCacheManager = { BUILD_REGEX: /^[0-9a-f]+(-[0-9a-f]+)?$/, CONTENT_REGEX: /^[0-9a-f]+(-[0-9a-f]+)?$/, CACHE_LIMIT: 2, // maximum number of cache directories - CACHE_AGE: 60 * 60 * 1000, // up to one hour old + CACHE_AGE: 90 * 60 * 1000, // up to 90 minutes old init, queueDirOperation: callbackify(queueDirOperation),