@xuda.io/runtime-bundle 1.0.817 → 1.0.819

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.
@@ -27561,14 +27561,15 @@ func.UI.worker.init = async function (SESSION_ID) {
27561
27561
  }
27562
27562
  // this._interval = setInterval(job_iterator, 1);
27563
27563
  }
27564
+ await job_iterator();
27564
27565
  } else {
27565
27566
  //busy
27566
27567
 
27567
27568
  this.attempt++;
27568
27569
  }
27569
27570
  };
27570
-
27571
- this._interval = setInterval(job_iterator, 1);
27571
+ job_iterator();
27572
+ // this._interval = setInterval(job_iterator, 1);
27572
27573
 
27573
27574
  setInterval(async function () {
27574
27575
  func.UI.ds_garbage_collector();
@@ -27844,7 +27845,7 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
27844
27845
  // }, 1000);
27845
27846
  }
27846
27847
  setTimeout(async () => {
27847
- return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
27848
+ // return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
27848
27849
  }, 10000);
27849
27850
  },
27850
27851
  };