From 8fb3ad8a870a87be78a71421af90f43517853387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Tue, 24 Feb 2026 19:50:20 -0500 Subject: [PATCH] lower categoy prune --- src/activitypub/notes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activitypub/notes.js b/src/activitypub/notes.js index 1242891a35..b34490dea0 100644 --- a/src/activitypub/notes.js +++ b/src/activitypub/notes.js @@ -753,7 +753,7 @@ Notes.prune = async () => { await batch.processArray(cids, async function (cids) { await Promise.all(cids.map(cid => pruneCidTids(cid, remoteCutoff))); }, { - batch: 100, + batch: 10, }); winston.info(`[notes/prune] Scheduled pruning of topics in ${cids.length} categories complete`); };