fix: Comic Shanns issues, new fonts structure (#8641)

This commit is contained in:
Marcel Mraz
2024-10-21 01:11:53 +03:00
committed by GitHub
parent 15ca182333
commit 61623bbeba
279 changed files with 13267 additions and 488 deletions

View File

@@ -31,8 +31,8 @@ export class WorkerPool<T, R> {
},
) {
this.workerUrl = workerUrl;
// by default, active & idle workers will be terminated after 500ms of inactivity
this.workerTTL = options.ttl || 500;
// by default, active & idle workers will be terminated after 1s of inactivity
this.workerTTL = options.ttl || 1000;
}
/**