From 8c804e7de7b91202df2ea019274a957d5833b33a Mon Sep 17 00:00:00 2001 From: Marco van Dijk Date: Sun, 1 Dec 2024 16:56:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- master/worker.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/master/worker.js b/master/worker.js index 72fbd89..eefacd7 100644 --- a/master/worker.js +++ b/master/worker.js @@ -122,10 +122,12 @@ async function processQueue() { if (staleENSCache) { console.log("Writing ENS cache to disk"); await writeToStorage("ensDomainCache", ensDomainCache); + staleENSCache = false; } if (staleOrchCache) { console.log("Writing Orchestrator cache to disk"); await writeToStorage("orchCache", orchCache); + staleOrchCache = false; } await sleep(1000); }