From 20157bbecc47d868b4140ba8f8d9fe2dc9ff8356 Mon Sep 17 00:00:00 2001 From: Ken Holstein Date: Sun, 25 Jun 2017 12:12:17 -0400 Subject: [PATCH] updated mail-worker interval - must be lower because detectors rely on messages for across-problem memory --- HTML/Assets/mail-worker.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HTML/Assets/mail-worker.js b/HTML/Assets/mail-worker.js index 67d5173..2963f5d 100644 --- a/HTML/Assets/mail-worker.js +++ b/HTML/Assets/mail-worker.js @@ -77,7 +77,7 @@ setInterval(function() xhttp.send( JSON.stringify(trans) ); } else{ - console.log("trans_Q is empty in mail_worker"); + //console.log("trans_Q is empty in mail_worker"); } /* Send Detector results in queue */ @@ -102,6 +102,6 @@ setInterval(function() xhttp.send( JSON.stringify(detect) ); } else{ - console.log("detector_Q is empty in mail-worker"); + //console.log("detector_Q is empty in mail-worker"); } -},1500); //CHANGEME TO WHAT INTERVAL YOU WANT +},200); //CHANGEME TO WHAT INTERVAL YOU WANT