mirror of
https://github.com/TheBeastLT/torrentio-scraper.git
synced 2026-03-11 13:05:36 +00:00
update stream concurrency
This commit is contained in:
parent
98da59e1bf
commit
dda3e77b85
2 changed files with 1 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ const STALE_REVALIDATE_AGE = 4 * 60 * 60; // 4 hours
|
|||
const STALE_ERROR_AGE = 7 * 24 * 60 * 60; // 7 days
|
||||
|
||||
const builder = new addonBuilder(dummyManifest());
|
||||
const requestQueue = createNamedQueue(Infinity);
|
||||
const requestQueue = createNamedQueue(200);
|
||||
const newLimiter = pLimit(50)
|
||||
|
||||
builder.defineStreamHandler((args) => {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ import { SortOptions } from './sort.js';
|
|||
import { LanguageOptions } from './languages.js';
|
||||
import { DebridOptions } from '../moch/options.js';
|
||||
import { MochOptions } from '../moch/moch.js';
|
||||
import { PreConfigurations } from './configuration.js';
|
||||
|
||||
export default function landingTemplate(manifest, config = {}) {
|
||||
// 1. Server-Side Data Preparation
|
||||
|
|
|
|||
Loading…
Reference in a new issue