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 30932fc commit 6b2e11bCopy full SHA for 6b2e11b
src/domain/thread-pool.js
@@ -159,9 +159,6 @@ export class ThreadPool extends EventEmitter {
159
this.aborting = false
160
this.jobsRequested = this.jobsQueued = 0
161
this.broadcastChannel = options.broadcast
162
- this.grow = false
163
-
164
- this.once(this.growPool.name, this.growPool)
165
166
if (options?.preload) {
167
console.info('preload enabled for', this.name)
@@ -443,8 +440,6 @@ export class ThreadPool extends EventEmitter {
443
440
return this
444
441
}
445
442
446
- async growPool () {}
447
448
jobQueueRate () {
449
return Math.round((this.jobsQueued / this.jobsRequested) * 100)
450
0 commit comments