From ff37704bb62377c4a23a74e05235f92f34789de0 Mon Sep 17 00:00:00 2001 From: yflory Date: Fri, 4 Apr 2025 16:41:43 +0200 Subject: [PATCH] Fix eviction issue --- lib/eviction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/eviction.js b/lib/eviction.js index 12e3009de..41cc79b88 100644 --- a/lib/eviction.js +++ b/lib/eviction.js @@ -513,7 +513,7 @@ module.exports = function (Env, cb) { if (newerItem && getNewestTime(newerItem) > retentionTime) { // it's actually active, so don't archive it. w.abort(); - cb(); + next(); } // else fall through to the archival }));