fix: brown paper bag bug referencing the same object literal
[poolifier.git] / src / pools / cluster / dynamic.ts
index 513a73c5d7804cfa2e109a5d9cf6c01f4c060945..8b8c5185772dbea59bc0d22b2e1cb90b9383d507 100644 (file)
@@ -1,4 +1,3 @@
-import { EMPTY_OBJECT_LITERAL } from '../../utils'
 import { PoolType } from '../pool-internal'
 import type { ClusterPoolOptions } from './fixed'
 import { FixedClusterPool } from './fixed'
@@ -30,7 +29,7 @@ export class DynamicClusterPool<
     min: number,
     protected readonly max: number,
     filePath: string,
-    opts: ClusterPoolOptions = EMPTY_OBJECT_LITERAL
+    opts: ClusterPoolOptions = {}
   ) {
     super(min, filePath, opts)
   }