@abtnode/queue 1.16.17-beta-703fb879 → 1.16.17-beta-952ef53d

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.
Files changed (2) hide show
  1. package/lib/index.js +0 -7
  2. package/package.json +4 -4
package/lib/index.js CHANGED
@@ -283,13 +283,6 @@ module.exports = function createQueue({ file, store, onJob, options = {} }) {
283
283
  try {
284
284
  /* eslint-disable no-await-in-loop */
285
285
  const jobs = await store.getScheduledJobs();
286
-
287
- logger.info('loop.$jobs', jobs);
288
- logger.info(
289
- 'loop.$job.ids',
290
- jobs.map((x) => x.id)
291
- );
292
-
293
286
  for (const x of jobs) {
294
287
  if (x.job && x.id) {
295
288
  await cancel(x.id);
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.17-beta-703fb879",
6
+ "version": "1.16.17-beta-952ef53d",
7
7
  "description": "",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -19,13 +19,13 @@
19
19
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
20
20
  "license": "Apache-2.0",
21
21
  "dependencies": {
22
- "@abtnode/db": "1.16.17-beta-703fb879",
23
- "@abtnode/util": "1.16.17-beta-703fb879",
22
+ "@abtnode/db": "1.16.17-beta-952ef53d",
23
+ "@abtnode/util": "1.16.17-beta-952ef53d",
24
24
  "debug": "^4.3.4",
25
25
  "fastq": "^1.13.0",
26
26
  "uuid": "^8.3.2"
27
27
  },
28
- "gitHead": "97d63c671d823076e58b994107e10866367edd5d",
28
+ "gitHead": "a575050c7ffd08961a5f4072f4048f6e37976810",
29
29
  "devDependencies": {
30
30
  "jest": "^27.5.1"
31
31
  }