You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any reason why the pool size can't be unlimited? The default is 1 and setting to Infinity causes pool.fill to fail with:
Error: Maximum count of objects exceeded.
I'm using the pool for it's "recyclation features" rather than for limiting the count of objects. My current hotfix is setting max to Number.MAX_SAFE_INTEGER.
The text was updated successfully, but these errors were encountered:
Is there any reason why the pool size can't be unlimited? The default is 1 and setting to
Infinity
causespool.fill
to fail with:I'm using the pool for it's "recyclation features" rather than for limiting the count of objects. My current hotfix is setting
max
toNumber.MAX_SAFE_INTEGER
.The text was updated successfully, but these errors were encountered: