8000 Change order in delayed requests · HowProgrammingWorks/Pool@6f4eaf9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6f4eaf9

Browse files
committed
Change order in delayed requests
1 parent bdd6712 commit 6f4eaf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JavaScript/5-async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const poolify = (factory, min, norm, max) => {
99
const pool = (par) => {
1010
if (typeof(par) !== 'function') {
1111
if (pool.items.length < max) {
12-
const delayed = pool.delayed.pop();
12+
const delayed = pool.delayed.shift();
1313
if (delayed) {
1414
console.log('Recycle item, pass to delayed', pool.items.length);
1515
delayed(par);

0 commit comments

Comments
 (0)
0