Use JsDoc default regexp
[poolifier.git] / examples / dynamicExample.js
index 66909d382d0b4ffc27fb83fb3e84317eb0f68f3c..94c665a6ae88ee55e15575ff72fbcfd176751842 100644 (file)
@@ -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
     })