X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;h=ed1bddebe0e17914992b26d982e477bf95e8e7bc;hb=168c526f6e6913506e56f7d5107335c3d3d42938;hp=95b4f49a5db650ee91642e0119f6e4b3c4359e3f;hpb=a72f2599850d4587fa5088721897fe256e1c2de1;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index 95b4f49a..ed1bddeb 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -9,10 +9,10 @@ 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 => { + .then(() => { resolved++ if (resolved === iterations) { console.log('Time take is ' + (Date.now() - start))