We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fee555e commit d642886Copy full SHA for d642886
src/lib/browser_pool.ts
@@ -45,6 +45,7 @@ export class BrowserPool {
45
};
46
47
constructor({ poolOpts }: BrowserPoolConstructorArgs = {} as BrowserPoolConstructorArgs) {
48
+ // I need to pull options out of here
49
poolOpts = {
50
max: Number(process.env.POOL_MAX) || 10,
51
min: Number(process.env.POOL_MIN) || 2,
0 commit comments