refactor: refine pool startup error message
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 14 Aug 2023 14:44:18 +0000 (16:44 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 14 Aug 2023 14:44:18 +0000 (16:44 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/pools/abstract-pool.ts
tests/pools/abstract/abstract-pool.test.js

index 5633613ecebdda8cb763c7922588ebc504be4fc7..eb303232a208f3fcfc582614a7625831e1ab94c0 100644 (file)
@@ -107,7 +107,7 @@ export abstract class AbstractPool<
   ) {
     if (!this.isMain()) {
       throw new Error(
-        'Cannot start a pool from the same worker type as the current pool one'
+        'Cannot start a pool from a worker with the same type as the pool'
       )
     }
     this.checkNumberOfWorkers(this.numberOfWorkers)
index 8652287769af1d63267dde6cc4873e1284fa15e2..d5b105497dc5297bc9af5d1e000a51624979ff5e 100644 (file)
@@ -34,7 +34,7 @@ describe('Abstract pool test suite', () => {
           }
         )
     ).toThrowError(
-      'Cannot start a pool from the same worker type as the current pool one'
+      'Cannot start a pool from a worker with the same type as the pool'
     )
   })