@joystick.js/node-canary 0.0.0-canary.319 → 0.0.0-canary.320

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.
@@ -92,7 +92,6 @@ var queues_default = {
92
92
  "pending",
93
93
  new Date().toISOString()
94
94
  ]);
95
- console.log({ nextJob });
96
95
  if (nextJob?._id) {
97
96
  await db?.query(`
98
97
  UPDATE
@@ -86,7 +86,6 @@ class Queue {
86
86
  const okayToRunJobs = await this._checkIfOkayToRunJobs();
87
87
  if (okayToRunJobs && !process.env.HALT_QUEUES) {
88
88
  const nextJob = await this.db.getNextJobToRun();
89
- console.log(nextJob);
90
89
  this.handleNextJob(nextJob);
91
90
  }
92
91
  }, 300);
@@ -110,7 +109,6 @@ class Queue {
110
109
  return this._handleDeleteJob(nextJob?._id);
111
110
  }
112
111
  }
113
- console.log(nextJob);
114
112
  await this._logAttempt(nextJob?._id);
115
113
  await job_definition.run(nextJob?.payload, {
116
114
  ...nextJob,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/node-canary",
3
- "version": "0.0.0-canary.319",
3
+ "version": "0.0.0-canary.320",
4
4
  "type": "module",
5
5
  "description": "A Node.js framework for building web apps.",
6
6
  "main": "./dist/index.js",