X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpools%2Fcluster%2Ffixed.ts;h=faa68fc74ce96ece284bb953f53db02c47c154e9;hb=12ae3210477b0c54380db24470ff3b0e78926bd8;hp=81e7b3b7d08b4bb5624d993a15f7850d9d3bf2ba;hpb=c319c66bad0611acf6087950a1f8a20f8124167b;p=poolifier.git diff --git a/src/pools/cluster/fixed.ts b/src/pools/cluster/fixed.ts index 81e7b3b7..faa68fc7 100644 --- a/src/pools/cluster/fixed.ts +++ b/src/pools/cluster/fixed.ts @@ -66,7 +66,7 @@ export class FixedClusterPool< } /** @inheritDoc */ - public destroyWorker (worker: Worker): void { + protected destroyWorker (worker: Worker): void { this.sendToWorker(worker, { kill: 1 }) worker.kill() }