X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fcluster%2Fdynamic.ts;h=e8e51947246602194951bb4366c68c9cf9d63ad4;hb=e9ed6eeed0f1c96d89c1506ee342b3000a95b4ba;hp=08ebc75c76a66ba5ca311c2e269988d741ad5aff;hpb=d087803425ae5b3577028029dd1d2dae67d7f63b;p=poolifier.git diff --git a/src/pools/cluster/dynamic.ts b/src/pools/cluster/dynamic.ts index 08ebc75c..e8e51947 100644 --- a/src/pools/cluster/dynamic.ts +++ b/src/pools/cluster/dynamic.ts @@ -1,6 +1,6 @@ -import { checkDynamicPoolSize } from '../utils' -import { PoolEvents, type PoolType, PoolTypes } from '../pool' -import { type ClusterPoolOptions, FixedClusterPool } from './fixed' +import { checkDynamicPoolSize } from '../utils.js' +import { PoolEvents, type PoolType, PoolTypes } from '../pool.js' +import { type ClusterPoolOptions, FixedClusterPool } from './fixed.js' /** * A cluster pool with a dynamic number of workers, but a guaranteed minimum number of workers. @@ -34,13 +34,13 @@ export class DynamicClusterPool< super(min, filePath, opts, max) checkDynamicPoolSize( this.minimumNumberOfWorkers, - this.maximumNumberOfWorkers as number + this.maximumNumberOfWorkers ) } /** @inheritDoc */ protected shallCreateDynamicWorker (): boolean { - return !this.full && this.internalBusy() + return (!this.full && this.internalBusy()) || this.empty } /** @inheritDoc */