@xuda.io/runtime-bundle 1.0.827 → 1.0.828

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27526,8 +27526,8 @@ func.UI.worker.init = async function (SESSION_ID) {
27526
27526
  };
27527
27527
 
27528
27528
  let last_job_in_queue = 0;
27529
- let run_stat;
27530
- const job_iterator = async function (testId) {
27529
+ // let run_stat;
27530
+ const job_iterator = async function () {
27531
27531
  let from_job_num_to_run = last_job_in_queue;
27532
27532
  last_job_in_queue = UI_WORKER_OBJ.num - from_job_num_to_run;
27533
27533
 
@@ -27543,7 +27543,6 @@ func.UI.worker.init = async function (SESSION_ID) {
27543
27543
  break;
27544
27544
  }
27545
27545
 
27546
- console.log(testId);
27547
27546
  // var _session = SESSION_OBJ[val.SESSION_ID];
27548
27547
  // if (!UI_WORKER_OBJ.jobs[Number(key)] || val.job_num === 9999999)
27549
27548
  // continue;
@@ -27571,18 +27570,18 @@ func.UI.worker.init = async function (SESSION_ID) {
27571
27570
  this.attempt++;
27572
27571
  }
27573
27572
  // return job_iterator();
27574
- run_stat = 0;
27573
+ // run_stat = 0;
27575
27574
  };
27576
27575
  // job_iterator();
27577
- this._interval = setInterval(() => {
27578
- if (!run_stat) {
27579
- var testId = crypto.randomUUID();
27580
- run_stat = 1;
27581
- job_iterator(testId);
27582
- }
27583
- }, 10);
27576
+ // this._interval = setInterval(() => {
27577
+ // if (!run_stat) {
27578
+ // var testId = crypto.randomUUID();
27579
+ // run_stat = 1;
27580
+ // job_iterator(testId);
27581
+ // }
27582
+ // }, 10);
27584
27583
 
27585
- // this._interval = setInterval(job_iterator, 1);
27584
+ this._interval = setInterval(job_iterator, 1);
27586
27585
 
27587
27586
  setInterval(async function () {
27588
27587
  func.UI.ds_garbage_collector();