We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 167a292 commit e58cbbaCopy full SHA for e58cbba
packages/angular/build/src/utils/worker-pool.ts
@@ -15,8 +15,7 @@ export class WorkerPool extends Piscina {
15
constructor(options: WorkerPoolOptions) {
16
const piscinaOptions: WorkerPoolOptions = {
17
minThreads: 1,
18
- // Workaround for https://github.com/piscinajs/piscina/issues/816
19
- idleTimeout: 10_000,
+ idleTimeout: 1000,
20
// Web containers do not support transferable objects with receiveOnMessagePort which
21
// is used when the Atomics based wait loop is enable.
22
atomics: process.versions.webcontainer ? 'disabled' : 'sync',
0 commit comments