From f98c78504b4796e8cd15feda4c539d840cddd446 Mon Sep 17 00:00:00 2001 From: KernelDeimos Date: Mon, 15 Sep 2025 00:12:46 -0400 Subject: [PATCH] fix: try disabling this 30 second app cache for now OOM conditions happening... maybe this will fix it --- src/backend/src/helpers.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/src/helpers.js b/src/backend/src/helpers.js index 2bad401df..526cda6f5 100644 --- a/src/backend/src/helpers.js +++ b/src/backend/src/helpers.js @@ -366,9 +366,9 @@ async function refresh_associations_cache(){ if ( app === null ) return null; - kv.set(`apps:uid:${app.uid}`, app, { EX: 30 }); - kv.set(`apps:name:${app.name}`, app, { EX: 30 }); - kv.set(`apps:id:${app.id}`, app, { EX: 30 }); + // kv.set(`apps:uid:${app.uid}`, app, { EX: 30 }); + // kv.set(`apps:name:${app.name}`, app, { EX: 30 }); + // kv.set(`apps:id:${app.id}`, app, { EX: 30 }); // shallow clone because we use the `delete` operator // and it corrupts the cache otherwise