Decreasing delay between purges.

This commit is contained in:
Eric van der Vlist 2023-02-12 15:20:41 +01:00
parent c992782ab7
commit 8853ea4670
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ export const watchDbLegacy = async () => {
});
let i = 0;
for (const doc of deletedDocs) {
await sleep(50);
await sleep(10);
try {
await db.purge(doc.id, doc.rev);
} catch (err) {