update concurrency
Some checks are pending
Deploy Addon / build (SSH_HOST_2, SSH_KEY_2) (push) Waiting to run
Deploy Addon / build (SSH_HOST_3, SSH_KEY_3) (push) Waiting to run
Deploy Addon / build (SSH_HOST_4, SSH_KEY_4) (push) Waiting to run

This commit is contained in:
TheBeastLT 2026-01-25 12:27:35 +02:00
parent 1a86603bdf
commit 08c29c8e82
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ const STALE_ERROR_AGE = 7 * 24 * 60 * 60; // 7 days
const builder = new addonBuilder(dummyManifest());
const requestQueue = createNamedQueue(Infinity);
const newLimiter = pLimit(30)
const newLimiter = pLimit(50)
builder.defineStreamHandler((args) => {
if (!args.id.match(/tt\d+/i) && !args.id.match(/kitsu:\d+/i)) {

View file

@ -79,7 +79,7 @@ export const MochOptions = {
const unrestrictQueues = {}
Object.values(MochOptions)
.map(moch => moch.key)
.forEach(mochKey => unrestrictQueues[mochKey] = createNamedQueue(20));
.forEach(mochKey => unrestrictQueues[mochKey] = createNamedQueue(40));
export function hasMochConfigured(config) {
return Object.keys(MochOptions).find(moch => config?.[moch])