X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fcluster%2Ffixed.ts;h=89cab8ef0eba31aacbbde03fa4de24d68d9530d6;hb=1f68cedebde2cf95b6345300ac52cf7ca3ecbdff;hp=10ee92c57876663d07ae96ecdcde036013395126;hpb=0e05c4dc968e27cf71ef2ab266feb57d9d1bade9;p=poolifier.git diff --git a/src/pools/cluster/fixed.ts b/src/pools/cluster/fixed.ts index 10ee92c5..89cab8ef 100644 --- a/src/pools/cluster/fixed.ts +++ b/src/pools/cluster/fixed.ts @@ -107,7 +107,7 @@ export class FixedClusterPool< /** @inheritDoc */ protected get full (): boolean { - return this.workerNodes.length === this.numberOfWorkers + return this.workerNodes.length >= this.numberOfWorkers } /** @inheritDoc */