From d9722766be649b6266a556549fd6e553874dfdfb Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Thu, 26 Mar 2020 11:41:00 -0400
Subject: infinite loop fix
---
tools/schedule.js | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
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--;
--
cgit