chore: v3.0.5
[poolifier.git] / src / pools / thread / dynamic.ts
index a34f0c25f78b1da3a306c9c07edb5c5d43f0f21b..119e556dd2ccb454fec3ed9c89c20df5d76199c2 100644 (file)
@@ -1,4 +1,5 @@
 import { type PoolType, PoolTypes } from '../pool'
+import { checkDynamicPoolSize } from '../utils'
 import { FixedThreadPool, type ThreadPoolOptions } from './fixed'
 
 /**
@@ -31,7 +32,7 @@ export class DynamicThreadPool<
     opts: ThreadPoolOptions = {}
   ) {
     super(min, filePath, opts)
-    this.checkDynamicPoolSize(this.numberOfWorkers, this.max)
+    checkDynamicPoolSize(this.numberOfWorkers, this.max)
   }
 
   /** @inheritDoc */