X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fabstract-pool.ts;h=779d2b59017c4493d3e4dba12f71ae347f6b1ba6;hb=16248b233364112df0972c0e9154941f561f09cc;hp=7be2cef51c8f11646b5f43174de7abe3ea43a82c;hpb=9eae3c69ca545dc5e4807e2ae059f850e2bd6f9f;p=poolifier.git diff --git a/src/pools/abstract-pool.ts b/src/pools/abstract-pool.ts index 7be2cef5..779d2b59 100644 --- a/src/pools/abstract-pool.ts +++ b/src/pools/abstract-pool.ts @@ -860,7 +860,7 @@ export abstract class AbstractPool< public async removeTaskFunction (name: string): Promise { if (!this.taskFunctions.has(name)) { throw new Error( - 'Cannot remove a task function that does not exist on the pool side' + 'Cannot remove a task function not handled on the pool side' ) } this.taskFunctions.delete(name)