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 2672f6e commit 1d76d0eCopy full SHA for 1d76d0e
packages/angular/build/src/utils/worker-pool.ts
@@ -15,7 +15,8 @@ export class WorkerPool extends Piscina {
15
constructor(options: WorkerPoolOptions) {
16
const piscinaOptions: WorkerPoolOptions = {
17
minThreads: 1,
18
- idleTimeout: 1000,
+ // Workaround for https://github.com/piscinajs/piscina/issues/816
19
+ idleTimeout: 10_000,
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