X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;h=94c665a6ae88ee55e15575ff72fbcfd176751842;hb=1d25d3449f09e6059b73ab316c3e4ca9371dcc6a;hp=66909d382d0b4ffc27fb83fb3e84317eb0f68f3c;hpb=330c983e06cc9711c66fcd0f1bb419e80453c77f;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index 66909d38..94c665a6 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -9,14 +9,14 @@ pool.emitter.on('busy', () => maxReached++) const start = Date.now() const iterations = 1000 -for (let i = 0; i <= iterations; i++) { +for (let i = 1; i <= iterations; i++) { pool .execute({}) .then(res => { resolved++ if (resolved === iterations) { console.log('Time take is ' + (Date.now() - start)) - return console.log('The pool was full for ' + maxReached + ' times') + return console.log('The pool was busy for ' + maxReached + ' times') } return null })