diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/schedule.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/schedule.js b/tools/schedule.js index c110bb3..4fe730e 100644 --- a/tools/schedule.js +++ b/tools/schedule.js @@ -105,7 +105,9 @@ exports.Queue = function(delayms, maxExport, call){ } // Step 4: Shallow copy job array, and sort by job.wacc. - for (let job of jobq.slice().sort((el, ne) => el.wacc-ne.wacc)){ + let sort = jobq.slice().sort((el, ne) => el.wacc-ne.wacc); + // not inline because when inline, runs over and over again (loop) + for (let job of sort){ // Step 5: Iterate through array (high->low), and subtract 1 until the length of output is num. if (dequeued.length == num || job.data.length == 0) break; job.wacc--; |